summaryrefslogtreecommitdiff
path: root/editor
diff options
context:
space:
mode:
authorHugo Locurcio <hugo.locurcio@hugo.pro>2019-05-18 14:35:13 +0200
committerHugo Locurcio <hugo.locurcio@hugo.pro>2019-05-18 14:35:13 +0200
commit2713b44da78a58ddf2cf679c2cbf071fbc64b341 (patch)
treeae6d267f49bf6068ea63b6289e6b93f77b2319ee /editor
parentee5ba3e0974caba3e3589d2a53405ef7328dc1b1 (diff)
Fix "Open Project Data Folder" in the editor
The handling code also had to be moved as this option was moved to the Tools submenu.
Diffstat (limited to 'editor')
-rw-r--r--editor/editor_node.cpp7
1 files changed, 3 insertions, 4 deletions
diff --git a/editor/editor_node.cpp b/editor/editor_node.cpp
index 40e05940a7..8a1a9351cc 100644
--- a/editor/editor_node.cpp
+++ b/editor/editor_node.cpp
@@ -2287,10 +2287,6 @@ void EditorNode::_menu_option_confirm(int p_option, bool p_confirmed) {
project_settings->popup_project_settings();
} break;
- case RUN_PROJECT_DATA_FOLDER: {
-
- OS::get_singleton()->shell_open(String("file://") + OS::get_singleton()->get_user_data_dir());
- } break;
case FILE_INSTALL_ANDROID_SOURCE: {
if (p_confirmed) {
@@ -2527,6 +2523,9 @@ void EditorNode::_tool_menu_option(int p_idx) {
case TOOLS_ORPHAN_RESOURCES: {
orphan_resources->show();
} break;
+ case RUN_PROJECT_DATA_FOLDER: {
+ OS::get_singleton()->shell_open(String("file://") + OS::get_singleton()->get_user_data_dir());
+ } break;
case TOOLS_CUSTOM: {
if (tool_menu->get_item_submenu(p_idx) == "") {
Array params = tool_menu->get_item_metadata(p_idx);