From 073ffd1bffb71a3896b4e6b8d54dd84e62f04e69 Mon Sep 17 00:00:00 2001 From: Marco Pesenti Gritti Date: Mon, 22 May 2006 23:10:12 -0400 Subject: [PATCH] Default to tab active, this is damn racy --- sugar/shell/activity.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sugar/shell/activity.py b/sugar/shell/activity.py index 3b84bf52..e6872a30 100644 --- a/sugar/shell/activity.py +++ b/sugar/shell/activity.py @@ -12,7 +12,7 @@ class Activity(dbus.service.Object): """ Base Sugar activity object from which all other Activities should inherit """ def __init__(self): - self._has_focus = True + self._has_focus = False def get_has_focus(self): return self._has_focus