Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
View | Details | Raw Unified | Return to bug 110751
Collapse All | Expand All

(-)src/popup.cpp (-1 / +7 lines)
Lines 418-424 Link Here
418
		update();
418
		update();
419
		
419
		
420
		if( !isVisible() )
420
		if( !isVisible() )
421
			showPopup();
421
		{
422
			// we use timer to slow down the popup's show
423
			// this makes popup appear nicer than just flashing when the new messages appears
424
			QTimer *t = new QTimer( this );
425
			connect( t, SIGNAL(timeout()), this, SLOT(showPopup()) );
426
			t->start( 160, true );
427
		}
422
	}
428
	}
423
}
429
}
424
430

Return to bug 110751