diff options
| author | bulia byak <buliabyak@gmail.com> | 2007-10-25 22:23:34 +0000 |
|---|---|---|
| committer | buliabyak <buliabyak@users.sourceforge.net> | 2007-10-25 22:23:34 +0000 |
| commit | 10fd2f9a5de9eaad61063b6910db293ed2323918 (patch) | |
| tree | 5967e223adb2ad213d0fe65b8fd2421c9b76cc5e /src | |
| parent | Dockable dialogs: Allow in-dock dialogs to be expanded even if there's (diff) | |
| download | inkscape-10fd2f9a5de9eaad61063b6910db293ed2323918.tar.gz inkscape-10fd2f9a5de9eaad61063b6910db293ed2323918.zip | |
punctuation
(bzr r3961)
Diffstat (limited to 'src')
| -rw-r--r-- | src/ui/widget/selected-style.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/ui/widget/selected-style.cpp b/src/ui/widget/selected-style.cpp index 613fa977d..3c996f665 100644 --- a/src/ui/widget/selected-style.cpp +++ b/src/ui/widget/selected-style.cpp @@ -1263,13 +1263,13 @@ RotateableSwatch::do_motion(double by, guint modifier) { sp_document_maybe_done (sp_desktop_document(parent->getDesktop()), undokey, SP_VERB_DIALOG_FILL_STROKE, ("Adjust lightness")); double ch = hsl[2]; - parent->getDesktop()->event_context->_message_context->setF(Inkscape::IMMEDIATE_MESSAGE, _("Adusting <b>lightness</b> was %.3g, now <b>%.3g</b> (diff %.3g); without modifiers to adjust hue, with <b>Shift</b> to adjust saturation"), ch - diff, ch, diff); + parent->getDesktop()->event_context->_message_context->setF(Inkscape::IMMEDIATE_MESSAGE, _("Adusting <b>lightness</b>: was %.3g, now <b>%.3g</b> (diff %.3g); without modifiers to adjust hue, with <b>Shift</b> to adjust saturation"), ch - diff, ch, diff); } else { // hue sp_document_maybe_done (sp_desktop_document(parent->getDesktop()), undokey, SP_VERB_DIALOG_FILL_STROKE, ("Adjust hue")); double ch = hsl[0]; - parent->getDesktop()->event_context->_message_context->setF(Inkscape::IMMEDIATE_MESSAGE, _("Adusting <b>hue</b> was %.3g, now <b>%.3g</b> (diff %.3g); with <b>Shift</b> to adjust saturation, with <b>Ctrl</b> to adjust lightness"), ch - diff, ch, diff); + parent->getDesktop()->event_context->_message_context->setF(Inkscape::IMMEDIATE_MESSAGE, _("Adusting <b>hue</b>: was %.3g, now <b>%.3g</b> (diff %.3g); with <b>Shift</b> to adjust saturation, with <b>Ctrl</b> to adjust lightness"), ch - diff, ch, diff); } } |
