From 023a4a514221ab22bb29f87aeccd20b5595d1b2e Mon Sep 17 00:00:00 2001 From: MisterMLiL <99662459+MisterMLiL@users.noreply.github.com> Date: Tue, 3 Oct 2023 12:49:10 +0300 Subject: [PATCH] =?UTF-8?q?fix:=20=D0=B4=D0=BE=D0=B1=D0=B0=D0=B2=D0=BB?= =?UTF-8?q?=D0=B5=D0=BD=D0=B0=20=D0=B8=D0=BA=D0=BE=D0=BD=D0=BA=D0=B0=20?= =?UTF-8?q?=D0=B4=D0=BB=D1=8F=20=D0=BE=D0=BA=D0=BD=D0=B0=20"=D0=9E=20?= =?UTF-8?q?=D0=BF=D1=80=D0=BE=D0=B3=D1=80=D0=B0=D0=BC=D0=BC=D0=B5"=20(#55)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Closes #45. --- statapp/main_window.py | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/statapp/main_window.py b/statapp/main_window.py index e13d473..f24ecbc 100644 --- a/statapp/main_window.py +++ b/statapp/main_window.py @@ -97,6 +97,11 @@ class MainWindow(QMainWindow): def on_aboutmenuaction_triggered(self): global about_window about_window = AboutWindow() + + icon = QIcon() + icon.addFile(resource_path("ui/images/logo.ico"), QSize(), QIcon.Normal, QIcon.Off) + about_window.setWindowIcon(icon) + about_window.show() @Slot()