aboutsummaryrefslogtreecommitdiff
path: root/src/Ewmh.cc
diff options
context:
space:
mode:
authorMark Tiefenbruck <mark@fluxbox.org>2007-12-23 21:33:10 (GMT)
committerMark Tiefenbruck <mark@fluxbox.org>2007-12-23 21:33:10 (GMT)
commitfbc305ca80e352240b32b833e8388fb9aa99fa72 (patch)
treeea1c7d2f66b8ede4209f7299a228f36f98086393 /src/Ewmh.cc
parent1b48b749b9a376c883ff4cc2ca3e807ac85cf21f (diff)
downloadfluxbox-fbc305ca80e352240b32b833e8388fb9aa99fa72.zip
fluxbox-fbc305ca80e352240b32b833e8388fb9aa99fa72.tar.bz2
added focused/unfocused borders to styles
Diffstat (limited to 'src/Ewmh.cc')
-rw-r--r--src/Ewmh.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/Ewmh.cc b/src/Ewmh.cc
index 6f0d829..0091981 100644
--- a/src/Ewmh.cc
+++ b/src/Ewmh.cc
@@ -811,8 +811,8 @@ bool Ewmh::checkClientMessage(const XClientMessageEvent &ce,
811 FbWinFrameTheme &theme = screen->winFrameTheme(); 811 FbWinFrameTheme &theme = screen->winFrameTheme();
812 long title_h = theme.titleHeight() || 812 long title_h = theme.titleHeight() ||
813 theme.font().height() + 2*theme.bevelWidth() + 2; 813 theme.font().height() + 2*theme.bevelWidth() + 2;
814 title_h += theme.border().width(); 814 title_h += theme.border(true).width();
815 long handle_h = theme.handleWidth() + theme.border().width(); 815 long handle_h = theme.handleWidth() + theme.border(true).width();
816 long extents[4]; 816 long extents[4];
817 // our frames currently don't protrude from left/right 817 // our frames currently don't protrude from left/right
818 extents[0] = 0; 818 extents[0] = 0;