diff options
| author | bulia byak <buliabyak@gmail.com> | 2008-05-03 01:34:26 +0000 |
|---|---|---|
| committer | buliabyak <buliabyak@users.sourceforge.net> | 2008-05-03 01:34:26 +0000 |
| commit | 3999786eeffc3b12a2cc66f099d3d0f0ebc28418 (patch) | |
| tree | b0008f860b2ad49187a57abe36a7f52cec3e5a06 /src/seltrans.cpp | |
| parent | Modify for *Parser->*Reader conversion (diff) | |
| download | inkscape-3999786eeffc3b12a2cc66f099d3d0f0ebc28418.tar.gz inkscape-3999786eeffc3b12a2cc66f099d3d0f0ebc28418.zip | |
make more messages immediate
(bzr r5583)
Diffstat (limited to 'src/seltrans.cpp')
| -rw-r--r-- | src/seltrans.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/seltrans.cpp b/src/seltrans.cpp index 3c333c11b..e34f6ba83 100644 --- a/src/seltrans.cpp +++ b/src/seltrans.cpp @@ -976,7 +976,7 @@ gboolean Inkscape::SelTrans::scaleRequest(NR::Point &pt, guint state) } /* Status text */ - _message_context.setF(Inkscape::NORMAL_MESSAGE, + _message_context.setF(Inkscape::IMMEDIATE_MESSAGE, _("<b>Scale</b>: %0.2f%% x %0.2f%%; with <b>Ctrl</b> to lock ratio"), 100 * _absolute_affine[0], 100 * _absolute_affine[3]); @@ -1075,7 +1075,7 @@ gboolean Inkscape::SelTrans::stretchRequest(SPSelTransHandle const &handle, NR:: } // status text - _message_context.setF(Inkscape::NORMAL_MESSAGE, + _message_context.setF(Inkscape::IMMEDIATE_MESSAGE, _("<b>Scale</b>: %0.2f%% x %0.2f%%; with <b>Ctrl</b> to lock ratio"), 100 * _absolute_affine[0], 100 * _absolute_affine[3]); @@ -1190,7 +1190,7 @@ gboolean Inkscape::SelTrans::skewRequest(SPSelTransHandle const &handle, NR::Poi // Update the status text double degrees = mod360symm(Geom::rad_to_deg(radians)); - _message_context.setF(Inkscape::NORMAL_MESSAGE, + _message_context.setF(Inkscape::IMMEDIATE_MESSAGE, // TRANSLATORS: don't modify the first ";" // (it will NOT be displayed as ";" - only the second one will be) _("<b>Skew</b>: %0.2f°; with <b>Ctrl</b> to snap angle"), @@ -1249,7 +1249,7 @@ gboolean Inkscape::SelTrans::rotateRequest(NR::Point &pt, guint state) // Update the status text double degrees = mod360symm(Geom::rad_to_deg(radians)); - _message_context.setF(Inkscape::NORMAL_MESSAGE, + _message_context.setF(Inkscape::IMMEDIATE_MESSAGE, // TRANSLATORS: don't modify the first ";" // (it will NOT be displayed as ";" - only the second one will be) _("<b>Rotate</b>: %0.2f°; with <b>Ctrl</b> to snap angle"), degrees); |
