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

View file

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