From 4e081bd7ee16841f46adf9dace2913b5a0562ab7 Mon Sep 17 00:00:00 2001 From: kramo <93832451+kra-mo@users.noreply.github.com> Date: Sat, 11 Mar 2023 23:52:38 +0100 Subject: [PATCH] Fix library focus issue --- src/window.py | 1 + 1 file changed, 1 insertion(+) diff --git a/src/window.py b/src/window.py index 2b22001..a173836 100644 --- a/src/window.py +++ b/src/window.py @@ -133,6 +133,7 @@ class CartridgesWindow(Adw.ApplicationWindow): entry.cover_button.connect("clicked", self.show_overview, game_id) entry.menu_button.get_popover().connect("notify::visible", self.set_active_game, game_id) + entry.get_parent().set_focusable(False) if self.visible_widgets == {}: self.library_bin.set_child(self.notice_empty)