1
0
Fork 0
mirror of https://github.com/shlomif/PySolFC.git synced 2025-04-05 00:02:29 -04:00

scratch branch for temporary changes to facilitate the absence of music

Safe to ignore
This commit is contained in:
Shlomi Fish 2025-03-09 15:13:54 +02:00
parent 512d3ea466
commit 15f4afefb0
3 changed files with 3 additions and 0 deletions

View file

@ -911,6 +911,7 @@ class PysolMenubar(PysolMenubarTk):
self.top.screenshot(fn)
def mPlayNextMusic(self, *args):
print("mPlayNextMusic", flush=True)
if self._cancelDrag(break_pause=False):
return
if (self.app.audio and self.app.opt.music and

View file

@ -130,6 +130,7 @@ class Application:
self.tabletile_index = 0 # current table tile
self.sample_manager = SampleManager()
self.music_manager = MusicManager()
print('MusicManager = ', self.music_manager, flush=True)
self.music_playlist = []
self.intro = Struct(
progress=None, # progress bar

View file

@ -500,6 +500,7 @@ class PyGameAudioClient(AbstractAudioClient):
CAN_PLAY_MUSIC = True
def __init__(self):
print("print PyGameAudioClient", flush=True)
AbstractAudioClient.__init__(self)
import pygame.mixer
import pygame.mixer_music