diff --git a/modules/gui.py b/modules/gui.py index 4e2c2e7..2beb39d 100644 --- a/modules/gui.py +++ b/modules/gui.py @@ -765,7 +765,8 @@ class Ui_DownloadWindow(object): self.logs_box.setMaximumSize(QtCore.QSize(1000, 1000)) self.logs_box.setStyleSheet("background-color: rgb(74, 76, 83);\n" "border-radius: 5px; \n" - "color: rgb(242, 242, 242);") + "color: rgb(242, 242, 242);\n" + 'font: 50 12pt "Arial Black";') self.logs_box.setAcceptRichText(False) self.logs_box.setTextInteractionFlags(QtCore.Qt.TextSelectableByMouse) self.logs_box.setObjectName("logs_box") diff --git a/modules/search.py b/modules/search.py index a0a51bf..c949064 100644 --- a/modules/search.py +++ b/modules/search.py @@ -60,6 +60,7 @@ def info(package, download_ui=None, UiDownloadWindow=None): download_ui.logs_box.append(f"{r['name']}{'✅' if r['verified'] else ''} by {r['authorName']}") download_ui.logs_box.append(f"{r['description']}") download_ui.logs_box.append(f"👍{r['likes']} | 👎{r['dislikes']}") + download_ui.logs_box.append("") if not r['verified']: download_ui.logs_box.append("This package is not verified by the horsy team. This means that it \n" "can be unstable or it can be malware. Most packages have unverified\n"