Index: client.cpp
=================================================================== RCS file: /home/kde/kdebase/kwin/client.cpp,v retrieving revision 1.222 diff -d -u -r1.222 client.cpp --- client.cpp 2001/02/19 12:17:03 1.222 +++ client.cpp 2001/02/21 13:39:25 @@ -1152,7 +1152,7 @@ if ( e.data.l[1] ) blockAnimation = TRUE; iconify(); - } else if ( e.data.l[1] == NormalState && isIconified() ) { + } else if ( e.data.l[0] == NormalState && isIconified() ) { if ( e.data.l[1] ) blockAnimation = TRUE; // only show window if we're on current desktop svn path=/trunk/kdebase/kwin/; revision=83908
This commit is contained in:
parent
afb77f424b
commit
6b9f88256e
1 changed files with 1 additions and 1 deletions
|
@ -1157,7 +1157,7 @@ bool Client::clientMessage( XClientMessageEvent& e )
|
|||
if ( e.data.l[1] )
|
||||
blockAnimation = TRUE;
|
||||
iconify();
|
||||
} else if ( e.data.l[1] == NormalState && isIconified() ) {
|
||||
} else if ( e.data.l[0] == NormalState && isIconified() ) {
|
||||
if ( e.data.l[1] )
|
||||
blockAnimation = TRUE;
|
||||
// only show window if we're on current desktop
|
||||
|
|
Loading…
Reference in a new issue