my "no unmanaged windows" fix broke the unminimize animation. Works now

again.

svn path=/trunk/kdebase/kwin/; revision=68107
This commit is contained in:
Matthias Ettrich 2000-10-17 15:59:10 +00:00
parent a74ed42f17
commit 80b57294e1

View file

@ -1519,14 +1519,14 @@ void Client::move( int x, int y )
/*!
Reimplemented to set the mapping state and to map the managed
window in the window wrapper. Alo takes care of deiconification of
window in the window wrapper. Also takes care of deiconification of
transients.
*/
void Client::show()
{
QWidget::show();
if ( isIconified() && !isTransient() )
animateIconifyOrDeiconify( FALSE );
QWidget::show();
setMappingState( NormalState );
windowWrapper()->map();
}