Browse Source

Merge pull request #22753 from bugfi5h/master

Fix to ColorPicker behaviour when entering html. Fixing Issue #22714
Rémi Verschelde 7 năm trước cách đây
mục cha
commit
8625313330
1 tập tin đã thay đổi với 3 bổ sung0 xóa
  1. 3 0
      scene/gui/color_picker.cpp

+ 3 - 0
scene/gui/color_picker.cpp

@@ -159,7 +159,10 @@ void ColorPicker::_html_entered(const String &p_html) {
 	if (updating)
 		return;
 
+	float last_alpha = color.a;
 	color = Color::html(p_html);
+	if (!is_editing_alpha())
+		color.a = last_alpha;
 
 	if (!is_inside_tree())
 		return;