Set Remove from Library default to False

This commit is contained in:
Mathieu Comandon 2024-04-12 00:00:56 -07:00
parent ac0bbefa15
commit 11dadbabf8

View file

@ -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)