From adbcad0c8d0f6a64c282d17992625018bc6a32fd Mon Sep 17 00:00:00 2001 From: Markus Rosenstihl Date: Sun, 21 Dec 2025 11:40:14 +0100 Subject: [PATCH] fixed path for DAMARIS3 icon --- src/gui/DamarisGUI.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/gui/DamarisGUI.py b/src/gui/DamarisGUI.py index 291c424..c55c0d1 100644 --- a/src/gui/DamarisGUI.py +++ b/src/gui/DamarisGUI.py @@ -266,7 +266,7 @@ class DamarisGUI: self.xml_gui.add_from_file(glade_file) self.main_window = self.xml_gui.get_object( "main_window" ) self.main_window.connect( "delete-event", self.quit_event ) - self.main_window.set_icon_from_file( os.path.join( os.path.dirname( __file__ ), "DAMARIS.png" ) ) + self.main_window.set_icon_from_file( os.path.join( os.path.dirname( __file__ ), "DAMARIS3.png" ) ) self.main_window.set_title( "DAMARIS-%s" % __version__ )