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-08 09:26:17 +0200
commit324f2bac319426b00560b6551c07e6d7ad95a451 (patch)
tree9e353f4f53260aeab39584511d6e9d989a2dca79
parent3128994e245fbb7d0b44e397dd5a2fcd7d220bc4 (diff)
Fixes: NB#159342 - Application UI is not visible in foreground after opening
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 fe4b454b..8bd094ff 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 b4013629..94245c70 100644
--- a/src/widgets/duiwindow.cpp
+++ b/src/widgets/duiwindow.cpp
@@ -592,13 +592,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);