From fb0aee91eaeeb9c3d3feea45eaa7c83d6f8635af Mon Sep 17 00:00:00 2001 From: whitequark Date: Wed, 23 Mar 2016 14:16:17 +0000 Subject: [PATCH] Add a degree symbol to angle constraints. --- src/drawconstraint.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/drawconstraint.cpp b/src/drawconstraint.cpp index 1ceb37d..96b614e 100644 --- a/src/drawconstraint.cpp +++ b/src/drawconstraint.cpp @@ -52,7 +52,7 @@ double Constraint::EllipticalInterpolation(double rx, double ry, double theta) { std::string Constraint::Label(void) { std::string result; if(type == ANGLE) { - result = ssprintf("%.2f", valA); + result = ssprintf("%.2f°", valA); } else if(type == LENGTH_RATIO) { result = ssprintf("%.3f:1", valA); } else if(type == LENGTH_DIFFERENCE) {