default to line width of 0, which is more efficient than 1
This commit is contained in:
parent
cbf4bb3d62
commit
57a46b4f0f
1 changed files with 2 additions and 2 deletions
|
@ -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) { }
|
||||
|
|
Loading…
Reference in a new issue