From 921bccd48c88b69163a6c0c36ea50815f9762cab Mon Sep 17 00:00:00 2001 From: Marco Pesenti Gritti Date: Fri, 2 Mar 2007 21:02:18 +0100 Subject: [PATCH] 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. --- shell/intro/intro.py | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) diff --git a/shell/intro/intro.py b/shell/intro/intro.py index 575ff1c1..75e3791d 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"