diff options
| author | Joris Guyonvarch | 2025-12-30 10:06:31 +0100 |
|---|---|---|
| committer | Joris Guyonvarch | 2025-12-30 10:06:31 +0100 |
| commit | 6754cb500cc4dd8991b5887a6ffcc2cd9fcf0cf1 (patch) | |
| tree | 47483dc6684f74125238b1c5e9050691cf378a20 /src/book_transfer.py | |
| parent | b91bcbf3c52fd25688835c43e23264eae647e397 (diff) | |
Turn off ESC on book form and transfer modals
Diffstat (limited to 'src/book_transfer.py')
| -rw-r--r-- | src/book_transfer.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/book_transfer.py b/src/book_transfer.py index 341c247..3bda52f 100644 --- a/src/book_transfer.py +++ b/src/book_transfer.py @@ -20,7 +20,7 @@ class BookTransfer(Gtk.Window): self._data = data self._paths = paths - utils.configure_dialog(self, parent_window, data['title'], width=None, height=None) + utils.configure_dialog(self, parent_window, data['title'], width=None, height=None, allow_escape=False) self._box = Gtk.Box(orientation=Gtk.Orientation.VERTICAL, spacing=20) self.set_child(self._box) |
