From 90e5b03c31174ea7a3f302df5fe71ae0d8993bbc Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Thomas=20L=C3=BCbking?= Date: Sun, 27 Feb 2005 20:49:13 +0000 Subject: [PATCH] BUGS:99832 BUGS:99833 BUGS:93380 kompmgr now should get proper window shapes, removing several artefact bugs just swapping two lines in this file svn path=/trunk/kdebase/kwin/; revision=393629 --- geometry.cpp | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/geometry.cpp b/geometry.cpp index 25ab61ecfd..74ae23ce96 100644 --- a/geometry.cpp +++ b/geometry.cpp @@ -1606,8 +1606,9 @@ void Client::setGeometry( int x, int y, int w, int h, ForceGeometry_t force ) updateWorkareaDiffs(); if( block_geometry == 0 ) { - XMoveResizeWindow( qt_xdisplay(), frameId(), x, y, w, h ); resizeDecoration( QSize( w, h )); + XMoveResizeWindow( qt_xdisplay(), frameId(), x, y, w, h ); +// resizeDecoration( QSize( w, h )); if( !isShade()) { QSize cs = clientSize(); @@ -1644,8 +1645,9 @@ void Client::plainResize( int w, int h, ForceGeometry_t force ) updateWorkareaDiffs(); if( block_geometry == 0 ) { - XResizeWindow( qt_xdisplay(), frameId(), w, h ); resizeDecoration( QSize( w, h )); + XResizeWindow( qt_xdisplay(), frameId(), w, h ); +// resizeDecoration( QSize( w, h )); if( !isShade()) { QSize cs = clientSize();