Fix Rect2 properties typo

This commit is contained in:
Guilherme Felipe 2018-06-04 19:16:17 -03:00
parent e2acc602f3
commit 262c78ed97

View File

@ -1023,8 +1023,8 @@ void EditorPropertyRect2::_value_changed(double val) {
Rect2 r2;
r2.position.x = spin[0]->get_value();
r2.position.x = spin[1]->get_value();
r2.size.y = spin[2]->get_value();
r2.position.y = spin[1]->get_value();
r2.size.x = spin[2]->get_value();
r2.size.y = spin[3]->get_value();
emit_signal("property_changed", get_edited_property(), r2);
}