all repos — fluxbox @ 256b12aa35c0e7b59520c3a6c22632bc35838e65

custom fork of the fluxbox windowmanager

updated from cleaning in Toolbar
fluxgen fluxgen
commit

256b12aa35c0e7b59520c3a6c22632bc35838e65

parent

06ad66a21153adaf7a8c117106c066e58caa4a8a

1 files changed, 5 insertions(+), 5 deletions(-)

jump to
M src/Slit.ccsrc/Slit.cc

@@ -22,7 +22,7 @@ // LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING

// FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER // DEALINGS IN THE SOFTWARE. -// $Id: Slit.cc,v 1.26 2002/11/15 12:31:58 fluxgen Exp $ +// $Id: Slit.cc,v 1.27 2002/11/27 12:30:38 fluxgen Exp $ //use GNU extensions #ifndef _GNU_SOURCE

@@ -650,15 +650,15 @@

if (tbar->x() < frame.x + sw && tbar->x() + tw > frame.x && tbar->y() < frame.y + sh && tbar->y() + th > frame.y) { if (frame.y < th) { - frame.y += tbar->getExposedHeight(); + frame.y += tbar->exposedHeight(); if (screen()->getSlitDirection() == VERTICAL) - frame.y_hidden += tbar->getExposedHeight(); + frame.y_hidden += tbar->exposedHeight(); else frame.y_hidden = frame.y; } else { - frame.y -= tbar->getExposedHeight(); + frame.y -= tbar->exposedHeight(); if (screen()->getSlitDirection() == VERTICAL) - frame.y_hidden -= tbar->getExposedHeight(); + frame.y_hidden -= tbar->exposedHeight(); else frame.y_hidden = frame.y; }