diff --git a/gajim/dialogs.py b/gajim/dialogs.py index 50450afc5..c30ee3e08 100644 --- a/gajim/dialogs.py +++ b/gajim/dialogs.py @@ -1329,7 +1329,9 @@ class AboutDialog(Gtk.AboutDialog): self.show_all() # GTK Bug, We have to manually hide the License Button - self.get_action_area().get_children()[1].hide() + # Bug exists only on Windows + if os.name == 'nt': + self.get_action_area().get_children()[1].hide() class Dialog(Gtk.Dialog):