Update batch and batch copy

Batch select all base structure added. Batch copy button changed label to "Copy App ID"
This commit is contained in:
heliguy
2023-08-31 23:24:42 -04:00
parent fb19347a62
commit 32227348d3
2 changed files with 5 additions and 1 deletions

View File

@@ -598,6 +598,9 @@ class FlattoolGuiWindow(Adw.ApplicationWindow):
dialog.set_response_appearance("continue", Adw.ResponseAppearance.DESTRUCTIVE)
dialog.connect("response", self.on_batch_clean_response, dialog.choose_finish)
Gtk.Window.present(dialog)
def batch_select_all_handler(self, widget):
print("all")
def flatpak_row_select_handler(self, tickbox, index):
if tickbox.get_active():
@@ -627,4 +630,5 @@ class FlattoolGuiWindow(Adw.ApplicationWindow):
self.batch_clean_button.add_css_class("destructive-action")
self.batch_uninstall_button.add_css_class("destructive-action")
self.batch_select_all_button.connect("clicked", self.batch_select_all_handler)
self.batch_actions_enable(False)