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
This commit is contained in:
parent
36eb2d4f13
commit
90e5b03c31
1 changed files with 4 additions and 2 deletions
|
@ -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();
|
||||
|
|
Loading…
Reference in a new issue