From d3b1dcc8991d9b0110133abe6eeb43f69848a78d Mon Sep 17 00:00:00 2001 From: pin Date: Mon, 6 Sep 2010 11:31:02 +0000 Subject: [PATCH] =?utf8?q?Utilisation=20du=20param=C3=A8tre=20SCREEN=5FRES?= =?utf8?q?OLUTION=20dans=20l'application.?= MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit git-svn-id: https://svn.cri.ensmp.fr/svn/minwii/trunk@311 fe552daf-6dbe-4428-90eb-1537e0879342 --- src/minwii/app.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/minwii/app.py b/src/minwii/app.py index 1160d5b..e249c70 100755 --- a/src/minwii/app.py +++ b/src/minwii/app.py @@ -17,6 +17,7 @@ from minwii.synth import Synth from minwii.eventutils import EventDispatcher from minwii.musicxml import musicXml2Song from minwii.config import SONG_FILE_PATH +from minwii.config import SCREEN_RESOLUTION from minwii.globals import PLAYING_MODES_DICT from minwii.log import console, LOG_FORMAT_VERSION, envLogger @@ -30,7 +31,7 @@ class MinWii(object): LaunchScreen() self.app = Desktop() self.synth = Synth() - self.screenResolution = (1024,768) + self.screenResolution = SCREEN_RESOLUTION envLogger.info('résolution écran : %s', self.screenResolution) self.nwiimotes = 0 self.initWiimotes() -- 2.20.1