mirror of
https://github.com/godotengine/godot.git
synced 2025-10-19 16:03:29 +00:00
parent
69ea7da766
commit
964152ed71
1 changed files with 4 additions and 2 deletions
|
@ -164,7 +164,6 @@ void GraphNode::_resort() {
|
|||
vofs += size.y;
|
||||
}
|
||||
|
||||
_change_notify();
|
||||
update();
|
||||
connpos_dirty = true;
|
||||
}
|
||||
|
@ -409,9 +408,12 @@ Size2 GraphNode::get_minimum_size() const {
|
|||
|
||||
void GraphNode::set_title(const String &p_title) {
|
||||
|
||||
if (title == p_title)
|
||||
return;
|
||||
title = p_title;
|
||||
minimum_size_changed();
|
||||
update();
|
||||
_change_notify("title");
|
||||
minimum_size_changed();
|
||||
}
|
||||
|
||||
String GraphNode::get_title() const {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue