From 1186e51caf106f6ac6824be59a8227281002602c Mon Sep 17 00:00:00 2001 From: Mathieu Comandon Date: Fri, 21 Dec 2018 02:01:16 -0800 Subject: [PATCH] Do not disable continue button when no default is provided (Fixes #1354) --- lutris/gui/installerwindow.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/lutris/gui/installerwindow.py b/lutris/gui/installerwindow.py index 3056a3ab4..ebe7f487a 100644 --- a/lutris/gui/installerwindow.py +++ b/lutris/gui/installerwindow.py @@ -483,8 +483,6 @@ class InstallerWindow(Gtk.ApplicationWindow): self.continue_handler = self.continue_button.connect( "clicked", callback, alias, combobox ) - if not preselect: - self.continue_button.set_sensitive(False) self.continue_button.grab_focus() self.continue_button.show()