summaryrefslogtreecommitdiff
path: root/core/launcher/taskbar.cpp
Unidiff
Diffstat (limited to 'core/launcher/taskbar.cpp') (more/less context) (ignore whitespace changes)
-rw-r--r--core/launcher/taskbar.cpp2
1 files changed, 0 insertions, 2 deletions
diff --git a/core/launcher/taskbar.cpp b/core/launcher/taskbar.cpp
index 63361fe..7cbfe13 100644
--- a/core/launcher/taskbar.cpp
+++ b/core/launcher/taskbar.cpp
@@ -277,26 +277,24 @@ void TaskBar::stopWait()
277 * to smaller screen the SysTray is out of 277 * to smaller screen the SysTray is out of
278 * bounds and repaint() won't trigger an Event 278 * bounds and repaint() won't trigger an Event
279 */ 279 */
280void TaskBar::resizeEvent( QResizeEvent *e ) 280void TaskBar::resizeEvent( QResizeEvent *e )
281{ 281{
282 if ( sysTray ) 282 if ( sysTray )
283 sysTray->hide(); 283 sysTray->hide();
284 284
285 QHBox::resizeEvent( e ); 285 QHBox::resizeEvent( e );
286 286
287 if ( sysTray ) 287 if ( sysTray )
288 sysTray->show(); 288 sysTray->show();
289
290 owarn << "TaskBar::resize event" << oendl;
291} 289}
292 290
293void TaskBar::styleChange( QStyle &s ) 291void TaskBar::styleChange( QStyle &s )
294{ 292{
295 QHBox::styleChange( s ); 293 QHBox::styleChange( s );
296 calcMaxWindowRect(); 294 calcMaxWindowRect();
297} 295}
298 296
299void TaskBar::calcMaxWindowRect() 297void TaskBar::calcMaxWindowRect()
300{ 298{
301 if ( resizeRunningApp ) 299 if ( resizeRunningApp )
302 { 300 {