diff options
| author | Akshay Nair <phenax5@gmail.com> | 2025-04-20 17:40:09 +0530 |
|---|---|---|
| committer | Akshay Nair <phenax5@gmail.com> | 2025-05-02 16:15:41 +0530 |
| commit | 31872258b18e81d5f973080e5130ebf49db3271f (patch) | |
| tree | 6b70d71d2f9d845ffa2798df89010f347040d381 /src/WindowActionRouter.cpp | |
| parent | b4b6a646b3a7a7f6c7e990c67f208b76f4b5f748 (diff) | |
| download | null-browser-31872258b18e81d5f973080e5130ebf49db3271f.tar.gz null-browser-31872258b18e81d5f973080e5130ebf49db3271f.zip | |
Some more lua api specs
Diffstat (limited to 'src/WindowActionRouter.cpp')
| -rw-r--r-- | src/WindowActionRouter.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/WindowActionRouter.cpp b/src/WindowActionRouter.cpp index 424dda9..2eabc94 100644 --- a/src/WindowActionRouter.cpp +++ b/src/WindowActionRouter.cpp @@ -64,7 +64,7 @@ void WindowActionRouter::initialize(Configuration *config) { // Search connect(&runtime, &LuaRuntime::search_requested, this, [this](const QString &text, WebViewId webview_id) { - current_search_text = text.trimmed(); + set_current_search_text(text.trimmed()); find_current_search_text(webview_id, true); }); connect(&runtime, &LuaRuntime::search_next_requested, this, |
