From 74e76d266a66668de1ae3449e74b75844c96985b Mon Sep 17 00:00:00 2001 From: Vadim Lopatin Date: Fri, 22 Sep 2017 11:12:21 +0300 Subject: [PATCH] fix workspace explorer popup menu shortcuts - fix #320 --- src/dlangide/ui/wspanel.d | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) diff --git a/src/dlangide/ui/wspanel.d b/src/dlangide/ui/wspanel.d index a6e92d3..c011ed9 100644 --- a/src/dlangide/ui/wspanel.d +++ b/src/dlangide/ui/wspanel.d @@ -35,6 +35,9 @@ class WorkspacePanel : DockWindow { workspace = null; //layoutWidth = 200; _caption.text = "Workspace Explorer"d; + acceleratorMap.add([ACTION_PROJECT_FOLDER_EXPAND_ALL, ACTION_PROJECT_FOLDER_COLLAPSE_ALL, + ACTION_PROJECT_FOLDER_REFRESH, ACTION_PROJECT_FOLDER_RENAME_ITEM, + ACTION_PROJECT_FOLDER_REMOVE_ITEM, ACTION_PROJECT_FOLDER_OPEN_ITEM]); } bool selectItem(ProjectItem projectItem) { @@ -225,6 +228,21 @@ class WorkspacePanel : DockWindow { _tree.items.setDefaultItem(defaultItem); } + /// map key to action + override Action findKeyAction(uint keyCode, uint flags) { + Action action = _acceleratorMap.findByKey(keyCode, flags); + if (action) { + if (TreeItem ti = _tree.items.selectedItem) { + _popupMenuSelectedItem = ti; + action.objectParam = ti.objectParam; + } else { + return null; + } + return action; + } + return super.findKeyAction(keyCode, flags); + } + void expandAll(const Action a) { if (!_workspace) return;