From e86eb659854f7ccbd0154f11d4c0412153e300de Mon Sep 17 00:00:00 2001 From: Tom Sutcliffe Date: Fri, 13 Aug 2021 14:14:55 +0100 Subject: [PATCH] Update feet and inches format to match architectural convention --- src/solvespace.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/solvespace.cpp b/src/solvespace.cpp index b63c9b5..89b4a00 100644 --- a/src/solvespace.cpp +++ b/src/solvespace.cpp @@ -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)) {