small fix

This commit is contained in:
Ashley Graves 2024-09-18 10:28:13 +02:00
parent 963865a7f1
commit 6a9482379a
4 changed files with 67 additions and 75 deletions

View file

@ -8,6 +8,7 @@ body {
background-image: url(https://i.redd.it/c6xyflvpym3c1.jpg);
background-size: cover;
background-position: center;
--font: "Segoe UI", "Segoe UI Emoji";
}
.window {

View file

@ -83,7 +83,7 @@ libopenmpt.onRuntimeInitialized = function() {
visualizer.connectAudio(player.currentPlayingNode);
}
player.togglePause();
playbutton.innerText = player.currentPlayingNode.paused ? "▶️" : "⏸";
playbutton.innerText = player.currentPlayingNode.paused ? "⏵︎" : "⏸";
}
});
player.addHandler('onRowChange', () => {

File diff suppressed because one or more lines are too long