浏览代码

fix broken merge

Juan Linietsky 9 年之前
父节点
当前提交
e19f176765
共有 2 个文件被更改,包括 0 次插入15 次删除
  1. 0 2
      tools/editor/plugins/script_editor_plugin.cpp
  2. 0 13
      tools/editor/script_editor_debugger.cpp

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

@@ -604,8 +604,6 @@ void ScriptEditor::_breaked(bool p_breaked,bool p_can_debug) {
 void ScriptEditor::_show_debugger(bool p_show) {
 
 	debug_menu->get_popup()->set_item_checked( debug_menu->get_popup()->get_item_index(DEBUG_SHOW), p_show);
-
-	debugger->set_always_visible(p_show);
 }
 
 void ScriptEditor::_script_created(Ref<Script> p_script) {

+ 0 - 13
tools/editor/script_editor_debugger.cpp

@@ -1161,23 +1161,10 @@ void ScriptEditorDebugger:: _error_stack_selected(int p_idx){
 
 }
 
-<<<<<<< HEAD
 void ScriptEditorDebugger::set_hide_on_stop(bool p_hide) {
 
 	hide_on_stop=p_hide;
 }
-=======
-void ScriptEditorDebugger::set_always_visible(bool p_visible) {
-
-	always_visible=p_visible;
-
-	if (p_visible)
-		show();
-	else
-		hide();
-}
-
->>>>>>> c3db5d951c1ee938a0c789c78a9bb8045ef8605b
 
 void ScriptEditorDebugger::_bind_methods() {