You've already forked godot
mirror of
https://github.com/godotengine/godot.git
synced 2025-11-07 12:30:27 +00:00
Avoid grid step to go below zero
This commit is contained in:
@@ -111,13 +111,13 @@ public:
|
||||
label->set_h_size_flags(SIZE_EXPAND_FILL);
|
||||
|
||||
grid_step_x = memnew(SpinBox);
|
||||
grid_step_x->set_min(-SPIN_BOX_GRID_RANGE);
|
||||
grid_step_x->set_min(0.01);
|
||||
grid_step_x->set_max(SPIN_BOX_GRID_RANGE);
|
||||
grid_step_x->set_suffix("px");
|
||||
child_container->add_child(grid_step_x);
|
||||
|
||||
grid_step_y = memnew(SpinBox);
|
||||
grid_step_y->set_min(-SPIN_BOX_GRID_RANGE);
|
||||
grid_step_y->set_min(0.01);
|
||||
grid_step_y->set_max(SPIN_BOX_GRID_RANGE);
|
||||
grid_step_y->set_suffix("px");
|
||||
child_container->add_child(grid_step_y);
|
||||
|
||||
Reference in New Issue
Block a user