summaryrefslogtreecommitdiff
path: root/src/YalpClients/EflClient/main.py
diff options
context:
space:
mode:
authorManuel Traut <manut@linutronix.de>2010-01-28 01:48:03 +0100
committerManuel Traut <manut@linutronix.de>2010-01-28 01:48:03 +0100
commit397b8b455e29677ac6bcd21c2b59eac4592aef40 (patch)
treeff5123bbd4f3ac89fc9de724997b760cd69c5d44 /src/YalpClients/EflClient/main.py
parent873727ce82608db9d6b16db85b2436d54e99629f (diff)
EflClient: fix shutdown
elm boxes arent allowed to be swallowed into edje, because they have no references to their content, so it cannot be cleaned up by edje Signed-off-by: Manuel Traut <manut@mecka.net>
Diffstat (limited to 'src/YalpClients/EflClient/main.py')
-rwxr-xr-xsrc/YalpClients/EflClient/main.py5
1 files changed, 4 insertions, 1 deletions
diff --git a/src/YalpClients/EflClient/main.py b/src/YalpClients/EflClient/main.py
index fd6bcba..867d7d0 100755
--- a/src/YalpClients/EflClient/main.py
+++ b/src/YalpClients/EflClient/main.py
@@ -17,7 +17,7 @@ import playlist
def destroy(obj, event, data):
print "Bye bye"
elementary.exit()
-
+ print "exit done"
def gui():
elementary.init()
@@ -40,5 +40,8 @@ def gui():
win.show()
#ecore.main_loop_begin();
elementary.run();
+ print "quit main loop"
elementary.shutdown();
+ print "shutdown done"
+
gui()