Skip to content

Commit

Permalink
Use songFont for scrolling lyrics if we have it.
Browse files Browse the repository at this point in the history
  • Loading branch information
fuzion committed Sep 18, 2010
1 parent c5e8005 commit be4df97
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/GuitarScene.py
Expand Up @@ -1340,7 +1340,7 @@ def __init__(self, engine, libraryName, songName):
self.lyricHeight = 0

if self.midiLyricsEnabled > 0 and (self.midiLyricMode == 1 or self.midiLyricMode == 2) and not self.playingVocals: #line-by-line lyrics mode is selected and enabled:
lyricFont = self.engine.data.font
lyricFont = self.engine.data.songFont
if self.theme == 2:
txtSize = 0.00170
else:
Expand Down Expand Up @@ -5541,7 +5541,7 @@ def render(self, visibility, topMost): #QQstarS: Fix this function for mostly.
font = self.engine.data.shadowfont
else:
font = self.engine.data.font
lyricFont = self.engine.data.font
lyricFont = self.engine.data.songFont
bigFont = self.engine.data.bigFont
sphraseFont = self.engine.data.streakFont2

Expand Down

0 comments on commit be4df97

Please sign in to comment.