From 57a46b4f0f4dd64b57333bad6f2f1f805584b4da Mon Sep 17 00:00:00 2001 From: Dana Jansens Date: Sat, 24 Aug 2002 01:14:34 +0000 Subject: [PATCH] default to line width of 0, which is more efficient than 1 --- src/GCCache.hh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/GCCache.hh b/src/GCCache.hh index fc4ba133..e7a6c2b7 100644 --- a/src/GCCache.hh +++ b/src/GCCache.hh @@ -44,7 +44,7 @@ public: private: BGCCacheContext(const BaseDisplay * const _display) : display(_display), gc(0), pixel(0ul), fontid(0ul), - function(0), subwindow(0), used(false), screen(~(0u)), linewidth(1) {} + function(0), subwindow(0), used(false), screen(~(0u)), linewidth(0) {} const BaseDisplay *display; GC gc; @@ -113,7 +113,7 @@ private: class BPen { public: inline BPen(const BColor &_color, const XFontStruct * const _font = 0, - int _linewidth = 1, int _function = GXcopy, + int _linewidth = 0, int _function = GXcopy, int _subwindow = ClipByChildren) : color(_color), font(_font), linewidth(_linewidth), function(_function), subwindow(_subwindow), cache(_color.display()->gcCache()), item(0) { } -- 2.39.2