Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDaniel Drake <dsd@laptop.org>2009-12-02 11:47:54 (GMT)
committer Daniel Drake <dsd@laptop.org>2009-12-02 11:47:54 (GMT)
commitb66765b7d652d9e0fd99fc264400af63f4d1bd29 (patch)
treec2f8e7c16452e3ba036c03cb2a063038edb22cf3
parent96bbf75d78c64ec51350db752997d48dd0e47ca9 (diff)
Unfreeze DCON on intro screen (#1601)
Otherwise the display remained locked and the intro screen was not visible.
-rw-r--r--bin/sugar-session5
1 files changed, 4 insertions, 1 deletions
diff --git a/bin/sugar-session b/bin/sugar-session
index ef22db0..471d878 100644
--- a/bin/sugar-session
+++ b/bin/sugar-session
@@ -196,7 +196,6 @@ def bootstrap():
setup_window_manager()
launcher.setup()
- gobject.idle_add(unfreeze_dcon_cb)
gobject.idle_add(setup_frame_cb)
gobject.idle_add(setup_keyhandler_cb)
gobject.idle_add(setup_journal_cb)
@@ -228,6 +227,10 @@ def main():
set_fonts()
+ # this must be added early, so that it executes and unfreezes the screen
+ # even when we initially get blocked on the intro screen
+ gobject.idle_add(unfreeze_dcon_cb)
+
intro.check_profile()
start_ui_service()