diff options
author | Yuri Rubinsky <chaosus89@gmail.com> | 2024-06-01 13:15:13 +0300 |
---|---|---|
committer | Chaosus <chaosus89@gmail.com> | 2024-08-28 15:14:26 +0300 |
commit | 52889ab7ee68d7814d2c443247f16445add89b7c (patch) | |
tree | fe76c7cb88186c01510d4e1f5195108d66316a79 /editor/plugins/gradient_editor_plugin.cpp | |
parent | f648de1a83cf006dbfdaa075219ad4348628e58f (diff) | |
download | redot-engine-52889ab7ee68d7814d2c443247f16445add89b7c.tar.gz |
[Scene] Add SceneStringName::toggled
Diffstat (limited to 'editor/plugins/gradient_editor_plugin.cpp')
-rw-r--r-- | editor/plugins/gradient_editor_plugin.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/editor/plugins/gradient_editor_plugin.cpp b/editor/plugins/gradient_editor_plugin.cpp index 8bf5dad97f..1300394ca3 100644 --- a/editor/plugins/gradient_editor_plugin.cpp +++ b/editor/plugins/gradient_editor_plugin.cpp @@ -632,7 +632,7 @@ GradientEditor::GradientEditor() { snap_button->set_tooltip_text(TTR("Toggle Grid Snap")); snap_button->set_toggle_mode(true); toolbar->add_child(snap_button); - snap_button->connect("toggled", callable_mp(this, &GradientEditor::_set_snap_enabled)); + snap_button->connect(SceneStringName(toggled), callable_mp(this, &GradientEditor::_set_snap_enabled)); snap_count_edit = memnew(EditorSpinSlider); snap_count_edit->set_min(2); |