diff options
| author | Paul Buetow <paul@buetow.org> | 2026-01-21 21:59:40 +0200 |
|---|---|---|
| committer | Paul Buetow <paul@buetow.org> | 2026-01-21 21:59:40 +0200 |
| commit | f44e591e20dc5c9f592e65c799492d53d9378bfb (patch) | |
| tree | e83c515a4aadcd746d1c860916dafc67c603d3ad | |
| parent | 0aaa91d30c9d4a2b2b62ba156659a82be589e21f (diff) | |
cleanup: remove temporary debug code
| -rw-r--r-- | internal/gui/app.go | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/internal/gui/app.go b/internal/gui/app.go index 9936c91..7d48f75 100644 --- a/internal/gui/app.go +++ b/internal/gui/app.go @@ -1052,7 +1052,6 @@ func (a *Application) onRegenerateAudio() { // Store the word we're generating for wordForGeneration := a.currentWord - fmt.Printf("DEBUG onRegenerateAudio: word='%s', isBgBg=%v\n", wordForGeneration, isBgBg) a.startOperation(wordForGeneration) defer a.endOperation(wordForGeneration) @@ -1146,7 +1145,6 @@ func (a *Application) onRegenerateBackAudio() { if translation == "" { translation = strings.TrimSpace(a.translationEntry.Text) } - fmt.Printf("DEBUG onRegenerateBackAudio: front='%s', back='%s'\n", a.currentWord, translation) wordForGeneration := a.currentWord a.startOperation(wordForGeneration) |
