summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRĂ©mi Verschelde <rverschelde@gmail.com>2019-09-23 09:44:06 +0200
committerGitHub <noreply@github.com>2019-09-23 09:44:06 +0200
commit16bedc7edec42bb48e88abdb5787c015ed5ad191 (patch)
tree4ff14a47d4caaa35908a7a7e159a3751079bda9c
parentb671b6ad2b262b3e54111839295e6de967ddb540 (diff)
parentbee38c6b0bf3c524484bce95b135fbeaf9fa6cc5 (diff)
Merge pull request #32040 from Calinou/editor-help-shift-find-previous
Find the previous match in the editor help when pressing Shift + Enter
-rw-r--r--editor/editor_help.cpp7
1 files changed, 6 insertions, 1 deletions
diff --git a/editor/editor_help.cpp b/editor/editor_help.cpp
index e6df00b48c..24ed0ecfd0 100644
--- a/editor/editor_help.cpp
+++ b/editor/editor_help.cpp
@@ -30,6 +30,7 @@
#include "editor_help.h"
+#include "core/os/input.h"
#include "core/os/keyboard.h"
#include "doc_data_compressed.gen.h"
#include "editor/plugins/script_editor_plugin.h"
@@ -1807,5 +1808,9 @@ void FindBar::_search_text_changed(const String &p_text) {
void FindBar::_search_text_entered(const String &p_text) {
- search_next();
+ if (Input::get_singleton()->is_key_pressed(KEY_SHIFT)) {
+ search_prev();
+ } else {
+ search_next();
+ }
}