1
0
mirror of https://github.com/tomahawk-player/tomahawk.git synced 2025-08-29 00:30:04 +02:00

update the viewport!

This commit is contained in:
Leo Franchi
2011-01-23 14:41:32 -05:00
parent e75789417c
commit 4bf807c21b
2 changed files with 2 additions and 1 deletions

View File

@@ -50,6 +50,7 @@ DynamicView::showMessageTimeout( const QString& title, const QString& body )
m_title = title; m_title = title;
m_body = body; m_body = body;
m_showTimer.start(); m_showTimer.start();
viewport()->update();
} }
void void

View File

@@ -28,7 +28,7 @@ void
OverlayWidget::setOpacity( qreal opacity ) OverlayWidget::setOpacity( qreal opacity )
{ {
m_opacity = opacity; m_opacity = opacity;
m_parent->reset(); m_parent->viewport()->update();
} }