We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a0ae1d2 commit 00c2b8cCopy full SHA for 00c2b8c
1 file changed
samples/melody/main.py
@@ -263,6 +263,14 @@ def run(self):
263
self.lyricLayer.setTextColor("blue")
264
lyric = " " + lyric[2:]
265
self.lyricLayer.print(lyric)
266
+ if lyricRowIdx < len(Lyrics) - 1:
267
+ lyricRow = Lyrics[lyricRowIdx + 1]
268
+ self.lyricLayer.setCursor(0, 25)
269
+ self.lyricLayer.setTextSize(12)
270
+ self.lyricLayer.setTextColor("gray")
271
+ for i, lyric in enumerate(lyricRow):
272
+ lyric = " " + lyric[2:]
273
+ self.lyricLayer.print(lyric)
274
dd.playbackLayerCommands()
275
if advance:
276
if lyricColIdx < len(lyricRow) - 1:
0 commit comments