adding unwanted modes by commenting them out

This commit is contained in:
marasolen 2023-10-24 12:39:05 -07:00
commit cf574cb482
2 changed files with 4 additions and 3 deletions

View file

@ -100,6 +100,7 @@ namespace // put the utils within this TU
MyVirtualKey::Number2,
L"2",
SUPPORTS_ALL },
/*
NavCategoryInitializer{ ViewMode::Graphing,
GRAPHING_ID,
L"Graphing",
@ -243,7 +244,7 @@ namespace // put the utils within this TU
CategoryGroupType::Converter,
MyVirtualKey::None,
std::nullopt,
SUPPORTS_NEGATIVE },
SUPPORTS_NEGATIVE },*/
};
} // namespace unnamed

View file

@ -162,7 +162,7 @@ namespace CalculatorApp
return false;
}
});
graphCategory.IsEnabled = NavCategoryStates.IsViewModeEnabled(ViewMode.Graphing);
//graphCategory.IsEnabled = NavCategoryStates.IsViewModeEnabled(ViewMode.Graphing);
});
}