1
0
mirror of https://github.com/godotengine/godot.git synced 2025-11-18 14:21:41 +00:00

ScriptEditor: Fixes bug where menu option would be handled twice (2.1)

(cherry picked from commit 97c385d)
This commit is contained in:
allkhor
2017-04-21 03:09:00 +06:00
parent ebddc57eb1
commit b010b4a85c

View File

@@ -1552,7 +1552,7 @@ void ScriptEditor::_menu_option(int p_option) {
} }
} }
} }
} } else {
EditorHelp *help = tab_container->get_current_tab_control()->cast_to<EditorHelp>(); EditorHelp *help = tab_container->get_current_tab_control()->cast_to<EditorHelp>();
if (help) { if (help) {
@@ -1574,6 +1574,7 @@ void ScriptEditor::_menu_option(int p_option) {
} }
} }
} }
}
void ScriptEditor::_tab_changed(int p_which) { void ScriptEditor::_tab_changed(int p_which) {