X-Git-Url: https://scm.cri.ensmp.fr/git/minwii.git/blobdiff_plain/27f5c5b477613baebb83d3af27d57f8ee506a585..e20495c66925a06496b90ccbe566cebecc74efa6:/src/minwii/widgets/home.py

diff --git a/src/minwii/widgets/home.py b/src/minwii/widgets/home.py
index b395eb6..10aa9d6 100755
--- a/src/minwii/widgets/home.py
+++ b/src/minwii/widgets/home.py
@@ -49,7 +49,7 @@ class Home(object, Table) :
         self.nwiimotes = params.get('nwiimotes', 0)
         self.songFile = params.get('songFile', '')
         self.spaceSize = (100,100)
-        self.font = pygame.font.Font(None,70)
+        self.font = pygame.font.Font(None,90)
         self._fill()
         self.selectedPlayMode = params.get('playMode', 'NORMAL')
         self.displayNotes = params.get('displayNotes', True)
@@ -69,7 +69,7 @@ class Home(object, Table) :
 
         self.tr()
         caption = '' if not self.songFile else FileOpenDialog.getSongTitle(self.songFile)
-        self.songTitle = self.createLabel(caption)
+        self.songTitle = self.createLabel(caption, font=pygame.font.Font(None,60))
         st = STYLE_RIGHT_COL.copy()
         del st['padding_top']
         self.td(self.songTitle, style = st)
@@ -175,7 +175,7 @@ class Home(object, Table) :
         if dlg.value and os.path.isfile(dlg.value):
             self.remove(self.songTitle)
             title = FileOpenDialog.getSongTitle(dlg.value)
-            self.songTitle = self.createLabel(title)
+            self.songTitle = self.createLabel(title, font= pygame.font.Font(None,60))
             self.td(self.songTitle, col=1, row=1, style=STYLE_RIGHT_COL)
             self.songFile = dlg.value
             self.playButton.disabled = False