From ff5adbce0e57e81aaa98b6b39a05daef5b30ba62 Mon Sep 17 00:00:00 2001 From: Vadim Lopatin Date: Tue, 5 Sep 2017 12:04:33 +0300 Subject: [PATCH] fix tab handling --- src/dlangui/widgets/editors.d | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/dlangui/widgets/editors.d b/src/dlangui/widgets/editors.d index 60915293..e33f8396 100644 --- a/src/dlangui/widgets/editors.d +++ b/src/dlangui/widgets/editors.d @@ -3460,6 +3460,8 @@ class FindPanel : HorizontalLayout { } bool onEditorKeyEvent(Widget source, KeyEvent event) { + if (event.keyCode == KeyCode.TAB) + return true; if (event.action == KeyAction.KeyDown && event.keyCode == KeyCode.ESCAPE) { close(); return true;