From 3ff36304e5a3c2aa6e4152e8c49c64b4833b3687 Mon Sep 17 00:00:00 2001 From: Simon Poirier Date: Wed, 09 Sep 2009 17:12:45 +0000 Subject: Merge branch 'master' of gitorious@git.sugarlabs.org:tutorius/mainline --- diff --git a/README b/README index 7d1359a..37701d4 100644 --- a/README +++ b/README @@ -7,6 +7,13 @@ Requirements: Note however that some sugar files will be patched, so you may wish to use a separate installation. +Integration into jhbuild: + + There are a set of jhbuild configuration files in the jhbuild/ folder. + You can use those to change your jhbuild environment to have it build + the latest version of tutorius. Replace/add the files into the + sugar jhbuild directory tree. + Installation 1. Edit the setup.cfg file to point to your sugar installation prefix. diff --git a/externals/sugar-toolkit b/externals/sugar-toolkit -Subproject 0993283113e826570256b865adb95069902a04e +Subproject 8019a1fdabd4edd85ba2bbe26929a3f57090679 diff --git a/jhbuild/config/modulesets/glucose-tutorius.modules b/jhbuild/config/modulesets/glucose-tutorius.modules new file mode 100644 index 0000000..346581a --- /dev/null +++ b/jhbuild/config/modulesets/glucose-tutorius.modules @@ -0,0 +1,64 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/jhbuild/config/modulesets/sugar-tutorius.modules b/jhbuild/config/modulesets/sugar-tutorius.modules new file mode 100644 index 0000000..50cb154 --- /dev/null +++ b/jhbuild/config/modulesets/sugar-tutorius.modules @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/jhbuild/sugar.jhbuildrc b/jhbuild/sugar.jhbuildrc new file mode 100644 index 0000000..cbf1ced --- /dev/null +++ b/jhbuild/sugar.jhbuildrc @@ -0,0 +1,9 @@ +use_local_modulesets = True +modulesets_dir = os.path.join(os.path.dirname(__file__), 'config/modulesets') +jhbuildbot_slaves_dir = os.path.join(os.path.dirname(__file__), 'sbuildbot') +jhbuildbot_mastercfg = os.path.join(os.path.dirname(__file__), 'sbuildbot', 'master.cfg') +jhbuildbot_dir = os.path.join(os.path.dirname(__file__), 'sbuildbot') + +moduleset = 'sugar-tutorius' +modules = ['meta-sugar'] + diff --git a/toolkitfix/graphics/window.py b/toolkitfix/graphics/window.py index 1004a78..7936183 100644 --- a/toolkitfix/graphics/window.py +++ b/toolkitfix/graphics/window.py @@ -108,11 +108,10 @@ class Window(gtk.Window): | gtk.gdk.POINTER_MOTION_MASK) self._event_box.connect('motion-notify-event', self.__motion_notify_cb) - self.add(self._vbox) - self._vbox.show() self._overlayer = Overlayer(self._vbox) self.add(self._overlayer) + self._vbox.show() self._overlayer.show() self._is_fullscreen = False -- cgit v0.9.1