diff options
author | Ian <ianb96@gmail.com> | 2018-01-02 02:10:49 -0500 |
---|---|---|
committer | ianb96 <ianb96@gmail.com> | 2018-07-26 08:58:35 -0400 |
commit | 1bb13e95a89c57996d6d6d937e49a6329c03d940 (patch) | |
tree | c69a1a2c508e71466dc68d03f42619c9fd0b408d /editor/filesystem_dock.cpp | |
parent | e38051970c73713948544a96a27012b30d59d444 (diff) | |
download | redot-engine-1bb13e95a89c57996d6d6d937e49a6329c03d940.tar.gz |
context menu improvements
Diffstat (limited to 'editor/filesystem_dock.cpp')
-rw-r--r-- | editor/filesystem_dock.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/editor/filesystem_dock.cpp b/editor/filesystem_dock.cpp index 37f86cc912..1718badbfa 100644 --- a/editor/filesystem_dock.cpp +++ b/editor/filesystem_dock.cpp @@ -1983,9 +1983,11 @@ FileSystemDock::FileSystemDock(EditorNode *p_editor) { */ file_options = memnew(PopupMenu); + file_options->set_hide_on_window_lose_focus(true); add_child(file_options); folder_options = memnew(PopupMenu); + folder_options->set_hide_on_window_lose_focus(true); add_child(folder_options); split_box = memnew(VSplitContainer); |