From 11dadbabf81486494df4dd4ca7b85cd5ffb0ea55 Mon Sep 17 00:00:00 2001 From: Mathieu Comandon Date: Fri, 12 Apr 2024 00:00:56 -0700 Subject: [PATCH] Set Remove from Library default to False --- lutris/gui/dialogs/uninstall_dialog.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lutris/gui/dialogs/uninstall_dialog.py b/lutris/gui/dialogs/uninstall_dialog.py index 7b3640428..ad54f8c06 100644 --- a/lutris/gui/dialogs/uninstall_dialog.py +++ b/lutris/gui/dialogs/uninstall_dialog.py @@ -351,7 +351,7 @@ class GameRemovalRow(Gtk.ListBoxRow): hbox.pack_start(label, False, False, 0) self.remove_from_library_checkbox = Gtk.CheckButton(_("Remove from Library"), halign=Gtk.Align.START) - self.remove_from_library_checkbox.set_active(True) + self.remove_from_library_checkbox.set_active(False) self.remove_from_library_checkbox.connect("toggled", self.on_checkbox_toggled) hbox.pack_end(self.remove_from_library_checkbox, False, False, 0)