diff options
author | K. S. Ernest (iFire) Lee <ernest.lee@chibifire.com> | 2018-10-10 12:52:37 -0700 |
---|---|---|
committer | K. S. Ernest (iFire) Lee <ernest.lee@chibifire.com> | 2018-10-10 13:20:57 -0700 |
commit | 6097a5af14cee12e52f98794459b0484966f2239 (patch) | |
tree | 1484b78693280116dad475c6240962539e85f2fb | |
parent | 4c1a5d9cfe2da761bfe17d52126deabc1f1c1bd3 (diff) |
Fix for Visual Shader Editor #22906: Cannot change color on Color Constant
Revert line from 5f2f1089086ad64636efc2a4096e55e4483c927a
-rw-r--r-- | editor/editor_properties.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/editor/editor_properties.cpp b/editor/editor_properties.cpp index 6eba9a9b67..5101023a72 100644 --- a/editor/editor_properties.cpp +++ b/editor/editor_properties.cpp @@ -1779,7 +1779,7 @@ void EditorPropertyColor::_color_changed(const Color &p_color) { void EditorPropertyColor::_popup_closed() { - emit_signal("property_changed", get_edited_property(), picker->get_pick_color(), true); + emit_signal("property_changed", get_edited_property(), picker->get_pick_color(), false); } void EditorPropertyColor::_bind_methods() { |