Merge pull request #93110 from Hilderin/fix-signal-panel-after-connection
Fix Can't reopen signals panel immediately after connecting a signal
This commit is contained in:
@ -2306,6 +2306,12 @@ void EditorNode::push_item(Object *p_object, const String &p_property, bool p_in
|
||||
_edit_current();
|
||||
}
|
||||
|
||||
void EditorNode::edit_previous_item() {
|
||||
if (editor_history.previous()) {
|
||||
_edit_current();
|
||||
}
|
||||
}
|
||||
|
||||
void EditorNode::push_item_no_inspector(Object *p_object) {
|
||||
_add_to_history(p_object, "", false);
|
||||
_edit_current(false, true);
|
||||
|
||||
Reference in New Issue
Block a user