Change the "remove missing" button to disabled rather than hidden

Also set a minimum size

(cherry picked from commit 0b6326c79a)
This commit is contained in:
Aaron Franke 2020-03-23 03:38:21 -04:00 committed by Rémi Verschelde
parent 00e4be1926
commit 50b1de7e39
No known key found for this signature in database
GPG key ID: C3336907360768E1

View file

@ -1856,7 +1856,7 @@ void ProjectManager::_update_project_buttons() {
rename_btn->set_disabled(empty_selection || is_missing_project_selected);
run_btn->set_disabled(empty_selection || is_missing_project_selected);
erase_missing_btn->set_visible(_project_list->is_any_project_missing());
erase_missing_btn->set_disabled(!_project_list->is_any_project_missing());
}
void ProjectManager::_unhandled_input(const Ref<InputEvent> &p_ev) {
@ -2525,6 +2525,7 @@ ProjectManager::ProjectManager() {
_project_list->set_enable_h_scroll(false);
VBoxContainer *tree_vb = memnew(VBoxContainer);
tree_vb->set_custom_minimum_size(Size2(120, 120));
tree_hb->add_child(tree_vb);
Button *open = memnew(Button);