Don't switch to script on breakpoint hit when using external editor.

Fixes #7705
This commit is contained in:
Andreas Haas 2017-02-20 21:22:50 +01:00
parent 6e2bf31e5a
commit 10fa752ae7
No known key found for this signature in database
GPG Key ID: B5FFAE1B65FBD2E1
1 changed files with 4 additions and 0 deletions

View File

@ -292,6 +292,10 @@ String ScriptEditor::_get_debug_tooltip(const String&p_text,Node *_se) {
void ScriptEditor::_breaked(bool p_breaked,bool p_can_debug) {
if (bool(EditorSettings::get_singleton()->get("text_editor/external/use_external_editor"))) {
return;
}
debug_menu->get_popup()->set_item_disabled( debug_menu->get_popup()->get_item_index(DEBUG_NEXT), !(p_breaked && p_can_debug));
debug_menu->get_popup()->set_item_disabled( debug_menu->get_popup()->get_item_index(DEBUG_STEP), !(p_breaked && p_can_debug) );
debug_menu->get_popup()->set_item_disabled( debug_menu->get_popup()->get_item_index(DEBUG_BREAK), p_breaked );