summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRémi Verschelde <rverschelde@gmail.com>2018-10-11 17:59:35 +0200
committerGitHub <noreply@github.com>2018-10-11 17:59:35 +0200
commit451e5fd0511bc2c17a66fc73a0de9a5169109517 (patch)
treeb5330d10c00dafcb1d57165ab236a691e0ad10aa
parentebdb374d803ce224bc4d3bae33726a1aaa6c09a0 (diff)
parent6097a5af14cee12e52f98794459b0484966f2239 (diff)
Merge pull request #22915 from fire/visuals-shader-colour-constant-22906
Fix for Visual Shader Editor #22906: Cannot change color on Color Con…
-rw-r--r--editor/editor_properties.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/editor/editor_properties.cpp b/editor/editor_properties.cpp
index 7f2500e509..d078cfcc91 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() {