Fixed Play button to match other icons
This commit is contained in:
parent
e11a4a091c
commit
26f1d98b46
|
@ -319,7 +319,7 @@ async function initializeDialogEditor() {
|
||||||
|
|
||||||
// --- NEW: Per-line Play button ---
|
// --- NEW: Per-line Play button ---
|
||||||
const playBtn = document.createElement('button');
|
const playBtn = document.createElement('button');
|
||||||
playBtn.innerHTML = '▶️';
|
playBtn.innerHTML = '⏵';
|
||||||
playBtn.title = item.audioUrl ? 'Play generated audio' : 'No audio generated yet';
|
playBtn.title = item.audioUrl ? 'Play generated audio' : 'No audio generated yet';
|
||||||
playBtn.className = 'play-line-btn';
|
playBtn.className = 'play-line-btn';
|
||||||
playBtn.disabled = !item.audioUrl;
|
playBtn.disabled = !item.audioUrl;
|
||||||
|
|
Loading…
Reference in New Issue