Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/shell/intro
diff options
context:
space:
mode:
authorMarco Pesenti Gritti <mpg@redhat.com>2007-03-02 20:02:18 (GMT)
committer Marco Pesenti Gritti <mpg@redhat.com>2007-03-02 20:02:18 (GMT)
commit921bccd48c88b69163a6c0c36ea50815f9762cab (patch)
tree0746ade85fd37b2518bd2ea668e1a44a0205a100 /shell/intro
parent69f8d84663434b679f6c77a932d94418f00b78ff (diff)
Tweak video size. People report it's too big on the olpc too.
Dan feel free to tweak this, I'm changing it to get a functional build in for tonight compose.
Diffstat (limited to 'shell/intro')
-rw-r--r--shell/intro/intro.py8
1 files changed, 2 insertions, 6 deletions
diff --git a/shell/intro/intro.py b/shell/intro/intro.py
index 575ff1c..75e3791 100644
--- a/shell/intro/intro.py
+++ b/shell/intro/intro.py
@@ -32,12 +32,8 @@ from sugar.graphics import iconbutton
import colorpicker
-if env.is_emulator():
- _VIDEO_WIDTH = units.points_to_pixels(120)
- _VIDEO_HEIGHT = units.points_to_pixels(120)
-else:
- _VIDEO_WIDTH = 640
- _VIDEO_HEIGHT = 480
+_VIDEO_WIDTH = units.points_to_pixels(160)
+_VIDEO_HEIGHT = units.points_to_pixels(120)
class IntroImage(gtk.EventBox):
__gtype_name__ = "IntroImage"