Do not disable continue button when no default is provided (Fixes #1354)

This commit is contained in:
Mathieu Comandon 2018-12-21 02:01:16 -08:00
parent 4cfb1d6f78
commit 1186e51caf

View file

@ -483,8 +483,6 @@ class InstallerWindow(Gtk.ApplicationWindow):
self.continue_handler = self.continue_button.connect( self.continue_handler = self.continue_button.connect(
"clicked", callback, alias, combobox "clicked", callback, alias, combobox
) )
if not preselect:
self.continue_button.set_sensitive(False)
self.continue_button.grab_focus() self.continue_button.grab_focus()
self.continue_button.show() self.continue_button.show()