diff options
| -rw-r--r-- | src/ui/eqwidget.cpp | 4 | ||||
| -rw-r--r-- | src/ui/playlist.cpp | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/src/ui/eqwidget.cpp b/src/ui/eqwidget.cpp index beaee5639..cc5266c12 100644 --- a/src/ui/eqwidget.cpp +++ b/src/ui/eqwidget.cpp @@ -447,8 +447,8 @@ void EqWidget::keyPressEvent (QKeyEvent *ke) #ifdef Q_WS_X11 bool EqWidget::event (QEvent *event) { - /*if(event->type() == QEvent::WinIdChange || event->type() == QEvent::Show) - WindowSystem::ghostWindow(winId());*/ + if(event->type() == QEvent::WinIdChange || event->type() == QEvent::Show) + WindowSystem::ghostWindow(winId()); return QWidget::event(event); } #endif diff --git a/src/ui/playlist.cpp b/src/ui/playlist.cpp index 132825e38..d53438278 100644 --- a/src/ui/playlist.cpp +++ b/src/ui/playlist.cpp @@ -506,8 +506,8 @@ void PlayList::readSettings() #ifdef Q_WS_X11 bool PlayList::event (QEvent *event) { - /*if(event->type() == QEvent::WinIdChange || event->type() == QEvent::Show) - WindowSystem::ghostWindow(winId());*/ + if(event->type() == QEvent::WinIdChange || event->type() == QEvent::Show) + WindowSystem::ghostWindow(winId()); return QWidget::event(event); } #endif |
