diff --git a/data/ui/window.blp b/data/ui/window.blp index 7f268b3..8ff5f72 100644 --- a/data/ui/window.blp +++ b/data/ui/window.blp @@ -222,10 +222,10 @@ menu primary_menu { action: "app.show-remotes-window"; } - item { - label: _("Install From The Web…"); - action: "app.open-search-install"; - } + // item { + // label: _("Install From The Web…"); + // action: "app.open-search-install"; + // } item { label: _("_Keyboard Shortcuts"); diff --git a/src/main.py b/src/main.py index 1551689..5ba3474 100644 --- a/src/main.py +++ b/src/main.py @@ -56,7 +56,7 @@ class WarehouseApplication(Adw.Application): self.create_action("set-filter", self.filters_shortcut, ["t"]) self.create_action("install-from-file", self.install_from_file, ["o"]) self.create_action("open-menu", self.main_menu_shortcut, ["F10"]) - self.create_action("open-search-install", self.open_search_install, ["i"]) + # self.create_action("open-search-install", self.open_search_install, ["i"]) gtk_version = str(Gtk.MAJOR_VERSION) + "." + str(Gtk.MINOR_VERSION) + "." + str(Gtk.MICRO_VERSION) adw_version = str(Adw.MAJOR_VERSION) + "." + str(Adw.MINOR_VERSION) + "." + str(Adw.MICRO_VERSION) @@ -142,11 +142,11 @@ class WarehouseApplication(Adw.Application): issue_url='https://github.com/flattool/warehouse/issues') about.add_link(_("Donate"), "https://github.com/flattool/warehouse/issues") about.add_credit_section(_("Contributors"), [ - # Contributors: do one of the following, one per line: Your Name, Your Name , Your Name https://websi.te - "Win ", - "Óscar Fernández Díaz", - "Runar https://github.com/runarcn", - "skøldis " + # Contributors: do one of the following, one per line: Your Name, Your Name , Your Name https://websi.te + "Win ", + "Óscar Fernández Díaz", + "Runar https://github.com/runarcn", + "skøldis " ]) about.present() diff --git a/src/window.py b/src/window.py index ab771c9..7ee23de 100644 --- a/src/window.py +++ b/src/window.py @@ -545,6 +545,8 @@ class WarehouseWindow(Adw.ApplicationWindow): filter_remotes_list = filter[3] filter_runtimes_list = filter[4] total_visible = 0 + self.batch_select_all_button.set_active(False) + self.set_select_all(False) index = 0 while(self.flatpaks_list_box.get_row_at_index(index) != None): @@ -678,8 +680,6 @@ class WarehouseWindow(Adw.ApplicationWindow): self.main_stack.set_visible_child(self.main_box) self.search_button.set_sensitive(True) - - def __init__(self, **kwargs): super().__init__(**kwargs) self.my_utils = myUtils(self)