Explorar o código

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

Fixes #7705
Andreas Haas %!s(int64=8) %!d(string=hai) anos
pai
achega
10fa752ae7
Modificáronse 1 ficheiros con 4 adicións e 0 borrados
  1. 4 0
      tools/editor/plugins/script_editor_plugin.cpp

+ 4 - 0
tools/editor/plugins/script_editor_plugin.cpp

@@ -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 );