diff options
| author | Maximilian Albert <maximilian.albert@gmail.com> | 2008-01-27 14:14:36 +0000 |
|---|---|---|
| committer | cilix42 <cilix42@users.sourceforge.net> | 2008-01-27 14:14:36 +0000 |
| commit | ceead133db8e51924cf97665eae535af9ff5396f (patch) | |
| tree | 37275ccc0a2814187e482eeaf56d4d05db33f329 /src | |
| parent | Make guidelines quickly deletable by using Ctrl+click (is Ctrl a suitable mod... (diff) | |
| download | inkscape-ceead133db8e51924cf97665eae535af9ff5396f.tar.gz inkscape-ceead133db8e51924cf97665eae535af9ff5396f.zip | |
Display Ctrl+click option for guidelines in status bar message
(bzr r4605)
Diffstat (limited to 'src')
| -rw-r--r-- | src/sp-guide.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/sp-guide.cpp b/src/sp-guide.cpp index 9af5f9f02..c54dd3282 100644 --- a/src/sp-guide.cpp +++ b/src/sp-guide.cpp @@ -398,7 +398,7 @@ char *sp_guide_description(SPGuide const *guide) double const radians = guide->angle(); double const degrees = Geom::rad_to_deg(radians); int const degrees_int = (int) round(degrees); - return g_strdup_printf(_("at %d degrees, through (%s,%s)"), degrees_int, position_string_x->str, position_string_y->str); + return g_strdup_printf(_("at %d degrees, through (%s,%s); <b>Ctrl</b>+click to delete"), degrees_int, position_string_x->str, position_string_y->str); } g_string_free(position_string_x, TRUE); |
