You've already forked godot
mirror of
https://github.com/godotengine/godot.git
synced 2025-11-20 14:45:44 +00:00
remove (for now) the next/prev instance buttons in debugger, closes #4993
This commit is contained in:
@@ -1731,15 +1731,17 @@ ScriptEditorDebugger::ScriptEditorDebugger(EditorNode *p_editor){
|
|||||||
docontinue->set_tooltip(TTR("Continue"));
|
docontinue->set_tooltip(TTR("Continue"));
|
||||||
docontinue->connect("pressed",this,"debug_continue");
|
docontinue->connect("pressed",this,"debug_continue");
|
||||||
|
|
||||||
hbc->add_child( memnew( VSeparator) );
|
//hbc->add_child( memnew( VSeparator) );
|
||||||
|
|
||||||
back = memnew( Button );
|
back = memnew( Button );
|
||||||
hbc->add_child(back);
|
hbc->add_child(back);
|
||||||
back->set_tooltip(TTR("Inspect Previous Instance"));
|
back->set_tooltip(TTR("Inspect Previous Instance"));
|
||||||
|
back->hide();
|
||||||
|
|
||||||
forward = memnew( Button );
|
forward = memnew( Button );
|
||||||
hbc->add_child(forward);
|
hbc->add_child(forward);
|
||||||
forward->set_tooltip(TTR("Inspect Next Instance"));
|
forward->set_tooltip(TTR("Inspect Next Instance"));
|
||||||
|
forward->hide();
|
||||||
|
|
||||||
|
|
||||||
HSplitContainer *sc = memnew( HSplitContainer );
|
HSplitContainer *sc = memnew( HSplitContainer );
|
||||||
|
|||||||
Reference in New Issue
Block a user