diff options
Diffstat (limited to 'src/plugins/General/notifier')
| -rw-r--r-- | src/plugins/General/notifier/popupwidget.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/plugins/General/notifier/popupwidget.cpp b/src/plugins/General/notifier/popupwidget.cpp index e245b99c6..f6c2bbb71 100644 --- a/src/plugins/General/notifier/popupwidget.cpp +++ b/src/plugins/General/notifier/popupwidget.cpp @@ -126,10 +126,10 @@ void PopupWidget::showVolume(int v) m_label1->setAlignment(Qt::AlignVCenter); m_label1->setText("<b>" + tr("Volume:") + QString (" %1\%").arg(v)+ + "</b>"); - - qApp->processEvents(); updateGeometry(); - resize(sizeHint()); + setFixedSize(sizeHint()); + update(); + show(); updatePosition(); m_timer->start(); } |
