Disable 'run' button if any project not selected and tiny refactoring

This commit is contained in:
DmitryKrutskikh 2018-05-09 09:28:01 +03:00
parent 0f930f8314
commit 965b6ac273
1 changed files with 5 additions and 3 deletions

View File

@ -725,9 +725,11 @@ void ProjectManager::_update_project_buttons() {
}
}
erase_btn->set_disabled(selected_list.size() < 1);
open_btn->set_disabled(selected_list.size() < 1);
rename_btn->set_disabled(selected_list.size() < 1);
bool empty_selection = selected_list.empty();
erase_btn->set_disabled(empty_selection);
open_btn->set_disabled(empty_selection);
rename_btn->set_disabled(empty_selection);
run_btn->set_disabled(empty_selection);
}
void ProjectManager::_panel_input(const Ref<InputEvent> &p_ev, Node *p_hb) {