Dont call show_all() on AboutDialog

Fixes #9038
This commit is contained in:
Philipp Hörist 2018-04-02 21:37:08 +02:00
parent 1ec49e9f24
commit 199f1c74ff
1 changed files with 1 additions and 6 deletions

View File

@ -1321,12 +1321,7 @@ class AboutDialog(Gtk.AboutDialog):
self.connect(
'response', lambda dialog, *args: Gtk.AboutDialog.do_close(dialog))
self.show_all()
# GTK Bug, We have to manually hide the License Button
# Bug exists only on Windows
if os.name == 'nt':
self.get_action_area().get_children()[1].hide()
self.show()
class Dialog(Gtk.Dialog):