aboutsummaryrefslogtreecommitdiff
path: root/lib/python/Components
diff options
context:
space:
mode:
authorFelix Domke <tmbinc@elitedvb.net>2005-12-17 16:00:50 +0000
committerFelix Domke <tmbinc@elitedvb.net>2005-12-17 16:00:50 +0000
commit7eab308715ea1130166915574e3b691e08eb4482 (patch)
tree0068c4e8eb07c80cade3408d2fd2b10baccdf012 /lib/python/Components
parent456ac28d25e861b4e661c88d573e3258a53d67a5 (diff)
downloadenigma2-7eab308715ea1130166915574e3b691e08eb4482.tar.gz
enigma2-7eab308715ea1130166915574e3b691e08eb4482.zip
GUI: child windows will no long be removed on parent destroy. listbox/window now destroy their private parents. python does no longer use thisown = 0.
Diffstat (limited to 'lib/python/Components')
-rw-r--r--lib/python/Components/GUISkin.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/python/Components/GUISkin.py b/lib/python/Components/GUISkin.py
index c953aaec..cf8e1894 100644
--- a/lib/python/Components/GUISkin.py
+++ b/lib/python/Components/GUISkin.py
@@ -16,7 +16,7 @@ class GUISkin:
for w in self.additionalWidgets:
w.instance = w.widget(parent)
- w.instance.thisown = 0
+ # w.instance.thisown = 0
applyAllAttributes(w.instance, desktop, w.skinAttributes)
for f in self.onLayoutFinish: