Scale the project manager window size with the editor scale
This also makes the project search field slightly larger.
This commit is contained in:
parent
a71a5fc0c3
commit
cd29cdab15
1 changed files with 3 additions and 1 deletions
|
@ -1757,6 +1757,8 @@ ProjectManager::ProjectManager() {
|
|||
editor_set_scale(custom_display_scale);
|
||||
} break;
|
||||
}
|
||||
|
||||
OS::get_singleton()->set_window_size(OS::get_singleton()->get_window_size() * MAX(1, EDSCALE));
|
||||
}
|
||||
|
||||
FileDialog::set_default_show_hidden_files(EditorSettings::get_singleton()->get("filesystem/file_dialog/show_hidden_files"));
|
||||
|
@ -1825,7 +1827,7 @@ ProjectManager::ProjectManager() {
|
|||
project_filter = memnew(ProjectListFilter);
|
||||
search_box->add_child(project_filter);
|
||||
project_filter->connect("filter_changed", this, "_load_recent_projects");
|
||||
project_filter->set_custom_minimum_size(Size2(250, 10));
|
||||
project_filter->set_custom_minimum_size(Size2(280, 10) * EDSCALE);
|
||||
search_tree_vb->add_child(search_box);
|
||||
|
||||
PanelContainer *pc = memnew(PanelContainer);
|
||||
|
|
Loading…
Reference in a new issue