mirror of
https://github.com/godotengine/godot.git
synced 2025-11-01 06:01:14 +00:00
Fixes snap button getting out of sync (issue 15366)
This commit is contained in:
parent
554e95747c
commit
b352b0b88c
1 changed files with 1 additions and 1 deletions
|
|
@ -3915,7 +3915,7 @@ void SpatialEditor::set_state(const Dictionary &p_state) {
|
||||||
|
|
||||||
if (d.has("snap_enabled")) {
|
if (d.has("snap_enabled")) {
|
||||||
snap_enabled = d["snap_enabled"];
|
snap_enabled = d["snap_enabled"];
|
||||||
tool_option_button[TOOL_OPT_LOCAL_COORDS]->set_pressed(d["snap_enabled"]);
|
tool_option_button[TOOL_OPT_USE_SNAP]->set_pressed(d["snap_enabled"]);
|
||||||
}
|
}
|
||||||
|
|
||||||
if (d.has("translate_snap"))
|
if (d.has("translate_snap"))
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue