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;