summaryrefslogtreecommitdiff
path: root/src/Window.cc
diff options
context:
space:
mode:
authorScott Moynes <smoynes@nexus.carleton.ca>2002-08-26 23:52:37 +0000
committerScott Moynes <smoynes@nexus.carleton.ca>2002-08-26 23:52:37 +0000
commitbb9a37ec3d10d529f4043ba76e149f0bd510c111 (patch)
tree0ed3b16069efc91cf083671e671603143c2b5dc0 /src/Window.cc
parent217488ee3e1a7246bdfadb6a56f83a4a50a7c180 (diff)
Draw close button with line_width of 2.
Diffstat (limited to 'src/Window.cc')
-rw-r--r--src/Window.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Window.cc b/src/Window.cc
index c260818c..a1567156 100644
--- a/src/Window.cc
+++ b/src/Window.cc
@@ -2635,7 +2635,7 @@ void BlackboxWindow::redrawCloseButton(bool pressed) const {
XClearWindow(blackbox->getXDisplay(), frame.close_button);
BPen pen((flags.focused) ? screen->getWindowStyle()->b_pic_focus :
- screen->getWindowStyle()->b_pic_unfocus);
+ screen->getWindowStyle()->b_pic_unfocus, 0, 2);
XDrawLine(blackbox->getXDisplay(), frame.close_button, pen.gc(),
2, 2, (frame.button_w - 3), (frame.button_w - 3));
XDrawLine(blackbox->getXDisplay(), frame.close_button, pen.gc(),