From 33131a183f9f34d798a741f317a91d87537684f6 Mon Sep 17 00:00:00 2001 From: Rick Yorgason Date: Wed, 17 Oct 2018 20:06:34 -0700 Subject: New "Outline thin strokes" view mode which draws thin strokes in outline mode so they're easier to see, while still drawing everything else normally. Very useful for making hairline strokes (0.001") for laser cutters. --- src/ui/interface.cpp | 2 ++ 1 file changed, 2 insertions(+) (limited to 'src/ui/interface.cpp') diff --git a/src/ui/interface.cpp b/src/ui/interface.cpp index 41f5f29a0..1f04f3a49 100644 --- a/src/ui/interface.cpp +++ b/src/ui/interface.cpp @@ -682,6 +682,8 @@ static gboolean update_view_menu(GtkWidget *widget, cairo_t * /*cr*/, gpointer u new_state = mode == Inkscape::RENDERMODE_NO_FILTERS; } else if (!strcmp(action->id, "ViewModeOutline")) { new_state = mode == Inkscape::RENDERMODE_OUTLINE; + } else if (!strcmp(action->id, "ViewModeOutlineThin")) { + new_state = mode == Inkscape::RENDERMODE_OUTLINE_THIN; } else if (!strcmp(action->id, "ViewColorModeNormal")) { new_state = colormode == Inkscape::COLORMODE_NORMAL; } else if (!strcmp(action->id, "ViewColorModeGrayscale")) { -- cgit v1.2.3