summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJabier Arraiza Cenoz <jabier.arraiza@marker.es>2013-12-30 20:45:48 +0000
committerJabiertxof <jtx@jtx.marker.es>2013-12-30 20:45:48 +0000
commit8d781fb629a07fdbd828b2eeb18694bb32e88768 (patch)
tree5a3acb7cfd5f018167396c04e9a365072cf52d3c
parentStart refactor, simplify node.cpp operations,general cleanup, changed brehabi... (diff)
downloadinkscape-8d781fb629a07fdbd828b2eeb18694bb32e88768.tar.gz
inkscape-8d781fb629a07fdbd828b2eeb18694bb32e88768.zip
Updated tip strings
(bzr r11950.1.215)
-rw-r--r--src/ui/tool/node.cpp12
1 files changed, 8 insertions, 4 deletions
diff --git a/src/ui/tool/node.cpp b/src/ui/tool/node.cpp
index 7266c85bb..305dd6798 100644
--- a/src/ui/tool/node.cpp
+++ b/src/ui/tool/node.cpp
@@ -492,7 +492,7 @@ Glib::ustring Handle::_getTip(unsigned state) const
if (can_shift_rotate && !isBSpline) {
more = C_("Path handle tip", "more: Shift, Ctrl, Alt");
} else if(isBSpline){
- more = C_("Path handle tip", "move:Shift, reset:double click, more: Ctrl");
+ more = C_("Path handle tip", "more: Ctrl");
}else {
more = C_("Path handle tip", "more: Ctrl, Alt");
}
@@ -545,9 +545,13 @@ Glib::ustring Handle::_getTip(unsigned state) const
return format_tip(C_("Path handle tip",
"<b>Auto node handle</b>: drag to convert to smooth node (%s)"), more);
default:
- return format_tip(C_("Path handle tip",
- "<b>%s</b>: drag to shape the segment (%s)"),
- handle_type_to_localized_string(_parent->type()), more);
+ if(!isBSpline){
+ return format_tip(C_("Path handle tip",
+ "<b>Auto node handle</b>: drag to convert to smooth node (%s)"), more);
+ }else{
+ return format_tip(C_("Path handle tip",
+ "<b>BSpline node handle</b>: Shift to drag, double click to reset (%s)"), more);
+ }
}
}