mirror of
https://github.com/shizand/statapp.git
synced 2025-04-03 16:13:44 +03:00
fix: добавлена иконка для окна "О программе"
This commit is contained in:
parent
3a655178d4
commit
b90823808c
@ -97,6 +97,11 @@ class MainWindow(QMainWindow):
|
|||||||
def on_aboutmenuaction_triggered(self):
|
def on_aboutmenuaction_triggered(self):
|
||||||
global about_window
|
global about_window
|
||||||
about_window = AboutWindow()
|
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()
|
about_window.show()
|
||||||
|
|
||||||
@Slot()
|
@Slot()
|
||||||
|
Loading…
Reference in New Issue
Block a user