summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGiganzo <158825920+Giganzo@users.noreply.github.com>2024-09-04 01:52:07 +0200
committerRémi Verschelde <rverschelde@gmail.com>2024-09-17 08:57:43 +0200
commit61b2ad9242e18d952bf71a369788728e16f1ed42 (patch)
treec0bcccb6a689382f99111fb4034f31737a07ce9b
parentd7a8654eddef73dfab451c88eed0e56d503d3cf9 (diff)
downloadredot-engine-61b2ad9242e18d952bf71a369788728e16f1ed42.tar.gz
Fix Set Frame Title popup position
(cherry picked from commit 7d78d753b5c17f06cef03e87edb2b207a8221efd)
-rw-r--r--editor/plugins/visual_shader_editor_plugin.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/editor/plugins/visual_shader_editor_plugin.cpp b/editor/plugins/visual_shader_editor_plugin.cpp
index e55a17b945..b2f09fff47 100644
--- a/editor/plugins/visual_shader_editor_plugin.cpp
+++ b/editor/plugins/visual_shader_editor_plugin.cpp
@@ -2887,8 +2887,8 @@ void VisualShaderEditor::_frame_title_popup_show(const Point2 &p_position, int p
}
frame_title_change_edit->set_text(node->get_title());
frame_title_change_popup->set_meta("id", p_node_id);
- frame_title_change_popup->popup();
frame_title_change_popup->set_position(p_position);
+ frame_title_change_popup->popup();
// Select current text.
frame_title_change_edit->grab_focus();