remove (for now) the next/prev instance buttons in debugger, closes #4993
This commit is contained in:
parent
5c5e22b252
commit
f071c82742
|
@ -1731,15 +1731,17 @@ ScriptEditorDebugger::ScriptEditorDebugger(EditorNode *p_editor){
|
|||
docontinue->set_tooltip(TTR("Continue"));
|
||||
docontinue->connect("pressed",this,"debug_continue");
|
||||
|
||||
hbc->add_child( memnew( VSeparator) );
|
||||
//hbc->add_child( memnew( VSeparator) );
|
||||
|
||||
back = memnew( Button );
|
||||
hbc->add_child(back);
|
||||
back->set_tooltip(TTR("Inspect Previous Instance"));
|
||||
back->hide();
|
||||
|
||||
forward = memnew( Button );
|
||||
hbc->add_child(forward);
|
||||
forward->set_tooltip(TTR("Inspect Next Instance"));
|
||||
forward->hide();
|
||||
|
||||
|
||||
HSplitContainer *sc = memnew( HSplitContainer );
|
||||
|
|
Loading…
Reference in New Issue