fix ColorPicker not correctly updating after pasting hex html color

This commit is contained in:
chanon 2016-12-26 15:38:48 +07:00
parent c798ff1551
commit 0bf5d86546

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);
}