From 1766453ca2ce30adf84798cb504e8b4d258bd08f Mon Sep 17 00:00:00 2001 From: Dana Jansens Date: Fri, 21 Jun 2002 01:06:29 +0000 Subject: sync with blackbox-cvs --- src/Toolbar.cc | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) (limited to 'src/Toolbar.cc') diff --git a/src/Toolbar.cc b/src/Toolbar.cc index 447e0d03..55beb59d 100644 --- a/src/Toolbar.cc +++ b/src/Toolbar.cc @@ -528,15 +528,20 @@ void Toolbar::updateStrut(void) { // left and right are always 0 strut.top = strut.bottom = 0; + // when hidden only one border is visible + unsigned int border_width = screen->getBorderWidth(); + if (! do_auto_hide) + border_width *= 2; + if (! screen->doHideToolbar()) { switch(placement) { case TopLeft: case TopCenter: case TopRight: - strut.top = getExposedHeight() + (screen->getBorderWidth() * 2); + strut.top = getExposedHeight() + border_width; break; default: - strut.bottom = getExposedHeight() + (screen->getBorderWidth() * 2); + strut.bottom = getExposedHeight() + border_width; } } -- cgit v1.2.3