diff --git a/text_insert_nonlinux.go b/text_insert_nonlinux.go index 9372289..fd8db1d 100644 --- a/text_insert_nonlinux.go +++ b/text_insert_nonlinux.go @@ -12,12 +12,6 @@ import ( ) func (a *App) insertTranscription(text string) { - if len(text) < 50 { - // Type short text directly to avoid clipboard interference - robotgo.TypeStr(text) - return - } - // Save old clipboard oldClip, clipErr := wailsruntime.ClipboardGetText(a.ctx)