diff options
| author | Joris Guyonvarch | 2025-12-30 10:13:35 +0100 |
|---|---|---|
| committer | Joris Guyonvarch | 2025-12-30 10:13:35 +0100 |
| commit | 39445241faa46513bd676e5dfbc485414017299b (patch) | |
| tree | 807a3423ac5cb7e5c880e56681b754911a0fcaa9 /src | |
| parent | 6754cb500cc4dd8991b5887a6ffcc2cd9fcf0cf1 (diff) | |
Fix selecting books in flow
Diffstat (limited to 'src')
| -rw-r--r-- | src/book_flow.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/book_flow.py b/src/book_flow.py index e3b1165..9698aab 100644 --- a/src/book_flow.py +++ b/src/book_flow.py @@ -39,7 +39,7 @@ class BookFlow(Gtk.ScrolledWindow): def select_book(self, book_id): if book_id in self._flow_box_children: - self.select_child(self._flow_box_children[book_id]) + self._flow_box.select_child(self._flow_box_children[book_id]) def reset(self, books, progress, genre, book_id=None): if book_id: |
