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

This commit is contained in:
?
2019-09-12 22:38:42 +02:00
committed by Zeno Rogue
parent 2ca3cf3744
commit e3a9ebc468
+8 -2
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);