瀏覽代碼

Merge pull request #41002 from AlphaOneProject/issue-40879

Modify the scene only when color changed
Rémi Verschelde 5 年之前
父節點
當前提交
149dbfc144
共有 1 個文件被更改,包括 5 次插入0 次删除
  1. 5 0
      editor/editor_properties.cpp

+ 5 - 0
editor/editor_properties.cpp

@@ -2108,6 +2108,11 @@ EditorPropertyTransform::EditorPropertyTransform() {
 ////////////// COLOR PICKER //////////////////////
 
 void EditorPropertyColor::_color_changed(const Color &p_color) {
+	// Cancel the color change if the current color is identical to the new one.
+	if (get_edited_object()->get(get_edited_property()) == p_color) {
+		return;
+	}
+
 	emit_changed(get_edited_property(), p_color, "", true);
 }