From b90823808c5395b55e2d84b24bc07640d49d90f6 Mon Sep 17 00:00:00 2001 From: MisterMLiL <eugenelazurenko@gmail.com> Date: Tue, 3 Oct 2023 12:48:03 +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"?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- 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()