Update feet and inches format to match architectural convention

pull/1003/head
Tom Sutcliffe 2021-08-13 14:14:55 +01:00 committed by phkahler
parent 959cf5ba75
commit e86eb65985
1 changed files with 1 additions and 1 deletions

View File

@ -352,7 +352,7 @@ std::string SolveSpaceUI::MmToString(double v, bool editable) {
}
std::ostringstream str;
if(feet != 0) {
str << feet << "' ";
str << feet << "'-";
}
// For something like 0.5, show 1/2" rather than 0 1/2"
if(!(feet == 0 && inches == 0 && numerator != 0)) {