summaryrefslogtreecommitdiffstats
path: root/src/verbs.cpp
diff options
context:
space:
mode:
authorRick Yorgason <rick@firefang.com>2018-10-18 08:21:15 +0000
committerRick Yorgason <rick@firefang.com>2018-10-18 08:21:15 +0000
commit83bf2fdf80496f0368438e16bc3adb8ee0e86fb7 (patch)
tree83d50e748c8fb85ea4bbcd267c9b5364722e4841 /src/verbs.cpp
parentNew "Outline thin strokes" view mode which draws thin strokes in outline mode... (diff)
downloadinkscape-83bf2fdf80496f0368438e16bc3adb8ee0e86fb7.tar.gz
inkscape-83bf2fdf80496f0368438e16bc3adb8ee0e86fb7.zip
Renamed "Outline thin strokes" to "visible hairlines" to make the intent clearer.
Diffstat (limited to 'src/verbs.cpp')
-rw-r--r--src/verbs.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/verbs.cpp b/src/verbs.cpp
index 2c7cfb25f..fe617148a 100644
--- a/src/verbs.cpp
+++ b/src/verbs.cpp
@@ -2132,8 +2132,8 @@ void ZoomVerb::perform(SPAction *action, void *data)
case SP_VERB_VIEW_MODE_OUTLINE:
dt->setDisplayModeOutline();
break;
- case SP_VERB_VIEW_MODE_OUTLINE_THIN:
- dt->setDisplayModeOutlineThin();
+ case SP_VERB_VIEW_MODE_VISIBLE_HAIRLINES:
+ dt->setDisplayModeVisibleHairlines();
break;
case SP_VERB_VIEW_MODE_TOGGLE:
dt->displayModeToggle();
@@ -3111,8 +3111,8 @@ Verb *Verb::_base_verbs[] = {
N_("Switch to normal display without filters"), nullptr),
new ZoomVerb(SP_VERB_VIEW_MODE_OUTLINE, "ViewModeOutline", N_("_Outline"),
N_("Switch to outline (wireframe) display mode"), nullptr),
- new ZoomVerb(SP_VERB_VIEW_MODE_OUTLINE_THIN, "ViewModeOutlineThin", N_("O_utline thin strokes"),
- N_("Outline strokes that are smaller than 1 pixel and draw the rest normally"), nullptr),
+ new ZoomVerb(SP_VERB_VIEW_MODE_VISIBLE_HAIRLINES, "ViewModeVisibleHairlines", N_("Visible _Hairlines"),
+ N_("Make sure hairlines are always drawn thick enough to see"), nullptr),
new ZoomVerb(SP_VERB_VIEW_MODE_TOGGLE, "ViewModeToggle", N_("_Toggle"),
N_("Toggle between normal and outline display modes"), nullptr),
new ZoomVerb(SP_VERB_VIEW_COLOR_MODE_NORMAL, "ViewColorModeNormal", N_("_Normal"),