diff --git a/simplesvnbrowser/main_window.py b/simplesvnbrowser/main_window.py index 3190059..3f69f74 100644 --- a/simplesvnbrowser/main_window.py +++ b/simplesvnbrowser/main_window.py @@ -64,6 +64,10 @@ class MainWindow(Gtk.Window): self.connect("delete-event", self.__close) + icon_theme = Gtk.IconTheme.get_default() + icon = icon_theme.load_icon("folder", 128, 0) + self.set_icon(icon) + self.__set_default_window_position() self.show_all() self.__set_default_window_position()