diff options
| author | Rick Yorgason <rick@firefang.com> | 2018-10-18 08:21:15 +0000 |
|---|---|---|
| committer | Rick Yorgason <rick@firefang.com> | 2018-10-18 08:21:15 +0000 |
| commit | 83bf2fdf80496f0368438e16bc3adb8ee0e86fb7 (patch) | |
| tree | 83d50e748c8fb85ea4bbcd267c9b5364722e4841 /src/display/drawing.cpp | |
| parent | New "Outline thin strokes" view mode which draws thin strokes in outline mode... (diff) | |
| download | inkscape-83bf2fdf80496f0368438e16bc3adb8ee0e86fb7.tar.gz inkscape-83bf2fdf80496f0368438e16bc3adb8ee0e86fb7.zip | |
Renamed "Outline thin strokes" to "visible hairlines" to make the intent clearer.
Diffstat (limited to 'src/display/drawing.cpp')
| -rw-r--r-- | src/display/drawing.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/display/drawing.cpp b/src/display/drawing.cpp index 7ecaea987..4b2a2cadf 100644 --- a/src/display/drawing.cpp +++ b/src/display/drawing.cpp @@ -79,14 +79,14 @@ Drawing::outline() const return renderMode() == RENDERMODE_OUTLINE; } bool -Drawing::outlineThin() const +Drawing::visibleHairlines() const { - return renderMode() == RENDERMODE_OUTLINE_THIN; + return renderMode() == RENDERMODE_VISIBLE_HAIRLINES; } bool Drawing::renderFilters() const { - return renderMode() == RENDERMODE_NORMAL || renderMode() == RENDERMODE_OUTLINE_THIN; + return renderMode() == RENDERMODE_NORMAL || renderMode() == RENDERMODE_VISIBLE_HAIRLINES; } int Drawing::blurQuality() const |
