From 593a5941a1e3dcf77a4caa060e79c0e7ab726216 Mon Sep 17 00:00:00 2001 From: Your Name Date: Tue, 9 Jun 2026 13:29:26 -0700 Subject: [PATCH] refactor: remove direct typing for short text in insertTranscription function to streamline clipboard usage --- text_insert_nonlinux.go | 6 ------ 1 file changed, 6 deletions(-) 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)