summaryrefslogtreecommitdiffstats
path: root/src/ui/tools/rect-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/rect-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/rect-tool.cpp')
-rw-r--r--src/ui/tools/rect-tool.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/ui/tools/rect-tool.cpp b/src/ui/tools/rect-tool.cpp
index fdb7bace9..be4b49dce 100644
--- a/src/ui/tools/rect-tool.cpp
+++ b/src/ui/tools/rect-tool.cpp
@@ -443,7 +443,7 @@ void RectTool::drag(Geom::Point const pt, guint state) {
}
} else {
this->message_context->setF(Inkscape::IMMEDIATE_MESSAGE,
- _("<b>Rectangle</b>: %s &#215; %s; with <b>Ctrl</b> to make square or integer-ratio rectangle; with <b>Shift</b> to draw around the starting point"),
+ _("<b>Rectangle</b>: %s &#215; %s; with <b>Ctrl</b> to make square, integer-ratio, or golden-ratio rectangle; with <b>Shift</b> to draw around the starting point"),
xs.c_str(), ys.c_str());
}
}