Skip to content

Commit f8d44c5

Browse files
committed
Updated Application Icons
- Updated application icons - Added .icns file for macOS - (Potentially) stopped macOS dock icon from being updated with a different icon during runtime
1 parent f69f173 commit f8d44c5

4 files changed

Lines changed: 4 additions & 3 deletions

File tree

tagstudio/resources/icon.icns

332 KB
Binary file not shown.

tagstudio/resources/icon.ico

-480 KB
Binary file not shown.

tagstudio/resources/icon.png

-315 KB
Loading

tagstudio/src/qt/ts_qt.py

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -439,9 +439,10 @@ def start(self):
439439
# self.main_window.centralWidget().layout().addWidget(menu_bar, 0,0,1,1)
440440
# self.main_window.tb_layout.addWidget(menu_bar)
441441

442-
icon = QIcon()
443-
icon.addFile(icon_path)
444-
self.main_window.setWindowIcon(icon)
442+
if sys.platform != "darwin":
443+
icon = QIcon()
444+
icon.addFile(icon_path)
445+
self.main_window.setWindowIcon(icon)
445446

446447
self.preview_panel = PreviewPanel(self.lib, self)
447448
l: QHBoxLayout = self.main_window.splitter

0 commit comments

Comments
 (0)