fix ColorPicker not correctly updating after pasting hex html color

(cherry picked from commit 0bf5d86546)
This commit is contained in:
chanon 2016-12-26 15:38:48 +07:00 committed by Rémi Verschelde
parent eea6c43676
commit 1397019424

View file

@ -162,7 +162,7 @@ void ColorPicker::_html_entered(const String& p_html) {
if (!is_inside_tree())
return;
_update_color();
set_color(color);
emit_signal("color_changed",color);
}