diff options
| author | bulia byak <buliabyak@gmail.com> | 2007-01-18 15:07:57 +0000 |
|---|---|---|
| committer | buliabyak <buliabyak@users.sourceforge.net> | 2007-01-18 15:07:57 +0000 |
| commit | f6b769de43418b445062ccce7fdc043a6c1399b7 (patch) | |
| tree | cf9db7588c6de96f571907ee52a66a2c156791f5 /src/ui/widget | |
| parent | text markup; use gradient preview for gradient fills or strokes (diff) | |
| download | inkscape-f6b769de43418b445062ccce7fdc043a6c1399b7.tar.gz inkscape-f6b769de43418b445062ccce7fdc043a6c1399b7.zip | |
text markup
(bzr r2240)
Diffstat (limited to 'src/ui/widget')
| -rw-r--r-- | src/ui/widget/style-swatch.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/ui/widget/style-swatch.cpp b/src/ui/widget/style-swatch.cpp index 77d096b13..34fb172ba 100644 --- a/src/ui/widget/style-swatch.cpp +++ b/src/ui/widget/style-swatch.cpp @@ -295,12 +295,12 @@ StyleSwatch::setStyle(SPStyle *query) } } else if (paint->set && paint->type == SP_PAINT_TYPE_NONE) { - _value[i].set_markup(_("None")); + _value[i].set_markup(_("<i>None</i>")); place->add(_value[i]); _tooltips.set_tip(*place, (i == SS_FILL)? (_("No fill")) : (_("No stroke"))); if (i == SS_STROKE) has_stroke = false; } else if (!paint->set) { - _value[i].set_markup(_("Unset")); + _value[i].set_markup(_("<b>Unset</b>")); place->add(_value[i]); _tooltips.set_tip(*place, (i == SS_FILL)? (_("Unset fill")) : (_("Unset stroke"))); if (i == SS_STROKE) has_stroke = false; |
