diff options
| author | Akshay Nair <phenax5@gmail.com> | 2025-08-02 21:54:15 +0530 |
|---|---|---|
| committer | Akshay Nair <phenax5@gmail.com> | 2025-08-02 21:58:49 +0530 |
| commit | d37020870600d6c842f9a75ebd3986df6010c25c (patch) | |
| tree | 471e4ebac8661dcc299df61fb01436071e88f4b5 /src/widgets/BrowserApp.cpp | |
| parent | 052f043274e122cf4e8f4589e1256d5dfd526252 (diff) | |
| download | null-browser-d37020870600d6c842f9a75ebd3986df6010c25c.tar.gz null-browser-d37020870600d6c842f9a75ebd3986df6010c25c.zip | |
Add hints extra for opening links (number keys only)
Diffstat (limited to '')
| -rw-r--r-- | src/widgets/BrowserApp.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/widgets/BrowserApp.cpp b/src/widgets/BrowserApp.cpp index d6f274b..c3c2313 100644 --- a/src/widgets/BrowserApp.cpp +++ b/src/widgets/BrowserApp.cpp @@ -84,7 +84,7 @@ bool BrowserApp::eventFilter(QObject *target, QEvent *event) { if (auto *target_widget = dynamic_cast<QWidget *>(target); win->isAncestorOf(target_widget)) { auto *key_event = static_cast<QKeyEvent *>(event); - const bool should_skip = win->on_window_key_event(key_event); + const bool should_skip = win->on_window_key_event(target, key_event); return should_skip; } } |
