EvtMainFrame: Add some extra safety, just in case.

This commit is contained in:
Guillaume Jacquemin 2021-05-12 20:39:48 +02:00
parent 0ce8046728
commit 3cb897ccda
1 changed files with 3 additions and 1 deletions

View File

@ -691,6 +691,8 @@ void EvtMainFrame::updateProfileStats() {
_muscularConstruction->SetValueFromInt(current_profile->getMuscularConstruction());
_mineralExoskeletology->SetValueFromInt(current_profile->getMineralExoskeletology());
_carbonizedSkin->SetValueFromInt(current_profile->getCarbonizedSkin());
updateCommandsState();
}
void EvtMainFrame::initStoryProgressMenu() {
@ -817,7 +819,7 @@ void EvtMainFrame::updateCommandsState() {
wxPropertyGridConstIterator it = _researchInventoryPropGrid->GetIterator(wxPG_ITERATE_NORMAL);
while(!it.AtEnd()) {
if(it.GetProperty()->IsCategory() == false) {
it.GetProperty()->Enable(_unsafeMode == true || game_state == GameState::NotRunning);
it.GetProperty()->Enable(it.GetProperty()->GetValue().GetInteger() != -1 && (_unsafeMode == true || game_state == GameState::NotRunning));
}
it.Next();
}