From e841fd7b57eb518fc0389f78a5387fdfae0859ad Mon Sep 17 00:00:00 2001 From: Mathieu Comandon Date: Mon, 8 Apr 2024 13:20:47 -0700 Subject: [PATCH] I have literally had to change this every single time I wanted to use it --- 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 c982c8087..94d0ba13d 100644 --- a/lutris/gui/dialogs/uninstall_dialog.py +++ b/lutris/gui/dialogs/uninstall_dialog.py @@ -352,7 +352,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(not settings.read_bool_setting("library_sync_enabled")) + self.remove_from_library_checkbox.set_active(True) self.remove_from_library_checkbox.connect("toggled", self.on_checkbox_toggled) hbox.pack_end(self.remove_from_library_checkbox, False, False, 0)