Merge pull request #77225 from JBrowne017/issue-77190
Allow up to INT32_MAX max size in Array/Dictionary editor
This commit is contained in:
commit
5d16efae9a
1 changed files with 1 additions and 1 deletions
|
|
@ -311,7 +311,7 @@ void EditorPropertyArray::update_property() {
|
|||
|
||||
size_slider = memnew(EditorSpinSlider);
|
||||
size_slider->set_step(1);
|
||||
size_slider->set_max(1000000);
|
||||
size_slider->set_max(INT32_MAX);
|
||||
size_slider->set_h_size_flags(SIZE_EXPAND_FILL);
|
||||
size_slider->set_read_only(is_read_only());
|
||||
size_slider->connect("value_changed", callable_mp(this, &EditorPropertyArray::_length_changed));
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue