diff options
| author | Stefan Pluecken <stefan.pluecken@multimedia-labs.de> | 2006-04-05 09:28:37 +0000 |
|---|---|---|
| committer | Stefan Pluecken <stefan.pluecken@multimedia-labs.de> | 2006-04-05 09:28:37 +0000 |
| commit | 8515e995db319835500cbcb4819d2a30a6155b8f (patch) | |
| tree | d9a0606a417b79b82a86507840a9b780640544af /lib/gui/ewidget.cpp | |
| parent | 96c90246cf97606521e7ceca8fcb7e6fe70703fc (diff) | |
| download | enigma2-8515e995db319835500cbcb4819d2a30a6155b8f.tar.gz enigma2-8515e995db319835500cbcb4819d2a30a6155b8f.zip | |
fix ewidget::show() (fixes the BlinkingWidget)
Diffstat (limited to 'lib/gui/ewidget.cpp')
| -rw-r--r-- | lib/gui/ewidget.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/gui/ewidget.cpp b/lib/gui/ewidget.cpp index cbc1a8c0..ef784997 100644 --- a/lib/gui/ewidget.cpp +++ b/lib/gui/ewidget.cpp @@ -109,7 +109,7 @@ void eWidget::show() while (root && !root->m_desktop) { root = root->m_parent; - if (root) + if (!root) { /* oops: our root widget does not have a desktop associated. probably somebody already erased the root, but tries some |
