aboutsummaryrefslogtreecommitdiff
path: root/src/SearchBar.cpp
diff options
context:
space:
mode:
authordec05eba <dec05eba@protonmail.com>2022-09-19 22:57:38 +0200
committerdec05eba <dec05eba@protonmail.com>2022-09-19 22:57:38 +0200
commit2315cc3f338583e000e93952404904df8c93d53f (patch)
treef9afffee8e4d6d8d3495661ed57e7a3b4ea9aa87 /src/SearchBar.cpp
parent1eff755a13250e588538c20c7e27fff5036b8c5b (diff)
Fix tab moving with ctrl+num writing number in search bar. Fix tab moving with vim keys moving in body and tab...
Diffstat (limited to 'src/SearchBar.cpp')
-rw-r--r--src/SearchBar.cpp5
1 files changed, 4 insertions, 1 deletions
diff --git a/src/SearchBar.cpp b/src/SearchBar.cpp
index 2371762..0c097a3 100644
--- a/src/SearchBar.cpp
+++ b/src/SearchBar.cpp
@@ -133,7 +133,10 @@ namespace QuickMedia {
const bool pressing_ctrl = (event.type == mgl::Event::KeyPressed && event.key.control);
if(pressing_ctrl && (event.type != mgl::Event::TextEntered || event.text.codepoint != 13)) // Enter
- return;
+ return;
+
+ if(event.type == mgl::Event::TextEntered && window.is_key_pressed(mgl::Keyboard::LControl) && !window.is_key_pressed(mgl::Keyboard::LAlt))
+ return;
if(event.type == mgl::Event::TextEntered && event.text.codepoint != 8 && event.text.codepoint != 127) { // 8 = backspace, 127 = del
onTextEntered(event.text);