mirror of
https://github.com/godotengine/godot.git
synced 2026-01-03 18:11:19 +03:00
Adjust size of some dialogs
This commit is contained in:
@@ -2172,7 +2172,7 @@ void ProjectManager::_open_selected_projects_ask() {
|
||||
return;
|
||||
}
|
||||
|
||||
const Size2i popup_min_size = Size2i(600.0 * EDSCALE, 400.0 * EDSCALE);
|
||||
const Size2i popup_min_size = Size2i(600.0 * EDSCALE, 0);
|
||||
|
||||
if (selected_list.size() > 1) {
|
||||
multi_open_ask->set_text(vformat(TTR("You requested to open %d projects in parallel. Do you confirm?\nNote that usual checks for engine version compatibility will be bypassed."), selected_list.size()));
|
||||
@@ -2257,7 +2257,7 @@ void ProjectManager::_open_selected_projects_ask() {
|
||||
|
||||
void ProjectManager::_full_convert_button_pressed() {
|
||||
ask_update_settings->hide();
|
||||
ask_full_convert_dialog->popup_centered(Size2i(600.0 * EDSCALE, 400.0 * EDSCALE));
|
||||
ask_full_convert_dialog->popup_centered(Size2i(600.0 * EDSCALE, 0));
|
||||
ask_full_convert_dialog->get_cancel_button()->grab_focus();
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user