summaryrefslogtreecommitdiffstats
path: root/src/ui/tools/arc-tool.cpp
diff options
context:
space:
mode:
authorNathan Lee <2431820-nathanal@users.noreply.gitlab.com>2019-02-13 12:15:59 +0000
committerNathan Lee <utasstudent-git1271@yahoo.com>2019-02-16 13:41:43 +0000
commit5c345eb88204abc69de83557cd510c0b854e883b (patch)
tree4ad921d8748fbb6a437802ede74427c2b7379b3a /src/ui/tools/arc-tool.cpp
parent[Fix 1778449] Correct Ellipse status bar text for golden ratio (diff)
downloadinkscape-5c345eb88204abc69de83557cd510c0b854e883b.tar.gz
inkscape-5c345eb88204abc69de83557cd510c0b854e883b.zip
Golden ratio in status bar text
Circle and Square can be constrained to a golden ratio. Adds this to the status bar (which noted 1:1 and integer-ratio previously)
Diffstat (limited to 'src/ui/tools/arc-tool.cpp')
-rw-r--r--src/ui/tools/arc-tool.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/ui/tools/arc-tool.cpp b/src/ui/tools/arc-tool.cpp
index 8af5d9a1e..14fe72bdd 100644
--- a/src/ui/tools/arc-tool.cpp
+++ b/src/ui/tools/arc-tool.cpp
@@ -426,7 +426,7 @@ void ArcTool::drag(Geom::Point pt, guint state) {
}
}
} else {
- this->message_context->setF(Inkscape::IMMEDIATE_MESSAGE, _("<b>Ellipse</b>: %s &#215; %s; with <b>Ctrl</b> to make square or integer-ratio ellipse; with <b>Shift</b> to draw around the starting point"), xs.c_str(), ys.c_str());
+ this->message_context->setF(Inkscape::IMMEDIATE_MESSAGE, _("<b>Ellipse</b>: %s &#215; %s; with <b>Ctrl</b> to make circle, integer-ratio, or golden-ratio ellipse; with <b>Shift</b> to draw around the starting point"), xs.c_str(), ys.c_str());
}
}