3D:: geometry menu shows 3D config instead of projections

This commit is contained in:
? 2019-02-28 03:41:12 +01:00 committed by Zeno Rogue
parent 2ca3cf3744
commit e3a9ebc468
1 changed files with 8 additions and 2 deletions

View File

@ -664,8 +664,14 @@ void showEuclideanMenu() {
if(specialland == laCanvas) dialog::lastItem().value = patterns::whichCanvas;
dialog::add_action([] { pushScreen(patterns::showPrePattern); });
validity_info();
dialog::addSelItem(XLAT("projection"), current_proj_name(), '1');
dialog::add_action([] { pushScreen(conformal::model_menu); });
if(DIM == 3) {
dialog::addItem(XLAT("3D configuration"), '1');
dialog::add_action([] { pushScreen(show3D); });
}
else {
dialog::addSelItem(XLAT("projection"), current_proj_name(), '1');
dialog::add_action([] { pushScreen(conformal::model_menu); });
}
dialog::addBreak(50);