full_geometry_name now displays the Archimedean symbol

This commit is contained in:
Zeno Rogue 2021-06-16 12:42:47 +02:00
parent 82b8b02a36
commit 0a6746f296
1 changed files with 1 additions and 0 deletions

View File

@ -634,6 +634,7 @@ EX string full_geometry_name() {
string fgname = XLAT(ginf[geometry].tiling_name);
if(qstring != "none") fgname += " " + XLAT(qstring);
if(arcm::in()) fgname = arcm::current.symbol;
if(variable) fgname = gp::operation_name() + " " + fgname;
return fgname;
}