Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSimon Schampijer <simon@laptop.org>2012-10-19 14:45:11 (GMT)
committer Manuel QuiƱones <manuq@laptop.org>2012-10-20 18:53:35 (GMT)
commita0c8750cc63eb0c6dc3942f07595a2f4d877ba77 (patch)
treefa8d3037fc2252265d8fa004237938e94e950f01
parent5c136a352b0dd2b805ffee5e04b12852e7ed7ef6 (diff)
Hide/Show cursor based on input: make it available in the intro screen
We just have to move it earlier in the startup phase. Signed-off-by: Simon Schampijer <simon@laptop.org> Acked-by: Manuel QuiƱones <manuq@laptop.org>
-rwxr-xr-xbin/sugar-session2
1 files changed, 1 insertions, 1 deletions
diff --git a/bin/sugar-session b/bin/sugar-session
index e465d75..23f88a1 100755
--- a/bin/sugar-session
+++ b/bin/sugar-session
@@ -229,7 +229,6 @@ def bootstrap():
GObject.idle_add(setup_frame_cb)
GObject.idle_add(setup_keyhandler_cb)
GObject.idle_add(setup_gesturehandler_cb)
- GObject.idle_add(setup_cursortracker_cb)
GObject.idle_add(setup_journal_cb)
GObject.idle_add(setup_notification_service_cb)
GObject.idle_add(setup_file_transfer_cb)
@@ -297,6 +296,7 @@ def main():
# even when we initially get blocked on the intro screen
GObject.idle_add(unfreeze_dcon_cb)
+ GObject.idle_add(setup_cursortracker_cb)
# make sure we have the correct cursor in the intro screen
# TODO #3204
if subprocess.call('echo $DISPLAY; xsetroot -cursor_name left_ptr', shell=True):