From 697369f2b4cca6700e2b6ca10f309bd51bacccee Mon Sep 17 00:00:00 2001 From: dec05eba Date: Tue, 20 Sep 2022 11:23:35 +0200 Subject: Allow using rctrl to move tabs without writing text into search bar --- src/SearchBar.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/SearchBar.cpp') diff --git a/src/SearchBar.cpp b/src/SearchBar.cpp index 0c097a3..1eff8a8 100644 --- a/src/SearchBar.cpp +++ b/src/SearchBar.cpp @@ -135,7 +135,7 @@ namespace QuickMedia { if(pressing_ctrl && (event.type != mgl::Event::TextEntered || event.text.codepoint != 13)) // Enter return; - if(event.type == mgl::Event::TextEntered && window.is_key_pressed(mgl::Keyboard::LControl) && !window.is_key_pressed(mgl::Keyboard::LAlt)) + if(event.type == mgl::Event::TextEntered && (window.is_key_pressed(mgl::Keyboard::LControl) || window.is_key_pressed(mgl::Keyboard::RControl)) && !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 -- cgit v1.2.3