aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTomas Junnonen <tomas.junnonen@nokia.com>2010-03-05 18:05:32 +0200
committerTomas Junnonen <tomas.junnonen@nokia.com>2010-03-05 18:19:39 +0200
commit000722f8c9d405ab18a04243005cc8a5365f7524 (patch)
tree09e171aecd31990dc06b329a8406a74942e94df4
parent11661043ec6373a5a87f543a600a27ac351b8a3f (diff)
Fixes: NB#159342 - Application UI is not visible in foreground after opening0.19.3-2
RevBy: TrustMe Details: This is a workaround for bug NB#159342 Bump version to 0.19.3-2
-rw-r--r--debian/changelog6
-rw-r--r--src/widgets/duiwindow.cpp7
2 files changed, 6 insertions, 7 deletions
diff --git a/debian/changelog b/debian/changelog
index c7d69d3c..94ceb729 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,9 @@
+libdui (0.19.3-2) unstable; urgency=low
+
+ * Fixes: NB#159342 - Application UI is not visible in foreground after opening
+
+ -- Tomas Junnonen <tomas.junnonen@nokia.com> Fri, 05 Mar 2010 18:07:00 +0200
+
libdui (0.19.3-1) unstable; urgency=low
* Fixes: NB#156878 - Possible race condition with remote theme server
diff --git a/src/widgets/duiwindow.cpp b/src/widgets/duiwindow.cpp
index 87afd621..7541b8d5 100644
--- a/src/widgets/duiwindow.cpp
+++ b/src/widgets/duiwindow.cpp
@@ -570,13 +570,6 @@ void DuiWindow::onDisplayChangeEvent(DuiOnDisplayChangeEvent *event)
void DuiWindow::paintEvent(QPaintEvent *event)
{
- // Disable view updates if the theme is not fully loaded yet
- // TODO: Alco check for "!isOnDisplay()" to block repaints if the
- // window is not visible anyway. Enable this once this works in
- // scratchbox.
- if (!updatesEnabled() || DuiTheme::hasPendingRequests()) {
- return;
- }
#ifdef DUI_USE_OPENGL
Q_D(DuiWindow);