Merge pull request #34361 from timothyqiu/group-editor-min-size

Fixes wrong minimum size of Group Editor
This commit is contained in:
Rémi Verschelde 2019-12-15 10:35:02 +01:00 committed by GitHub
commit 9c5fd89365
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -404,7 +404,7 @@ void GroupDialog::_bind_methods() {
}
GroupDialog::GroupDialog() {
set_custom_minimum_size(Size2(600, 400));
set_custom_minimum_size(Size2(600, 400) * EDSCALE);
scene_tree = SceneTree::get_singleton();