Fix LaunchClipClearProcess() for GUI platforms

This commit is contained in:
2025-11-10 19:55:36 -05:00
parent 483af75613
commit a3b89fcb96
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -6,5 +6,5 @@ package clip
// For interactive GUI/TUI implementations, the clipboard clearing process is launched as a goroutine. // For interactive GUI/TUI implementations, the clipboard clearing process is launched as a goroutine.
// copySubject can be omitted to clear the clipboard immediately and unconditionally. // copySubject can be omitted to clear the clipboard immediately and unconditionally.
func LaunchClipClearProcess(copySubject string) { func LaunchClipClearProcess(copySubject string) {
go clipClearProcess(copySubject) go ClipClearProcess(copySubject)
} }
+1 -1
View File
@@ -12,5 +12,5 @@ import (
// copySubject can be omitted to clear the clipboard immediately and unconditionally. // copySubject can be omitted to clear the clipboard immediately and unconditionally.
func LaunchClipClearProcess(copySubject string, isWayland bool) { func LaunchClipClearProcess(copySubject string, isWayland bool) {
os.Args = []string{os.Args[0], "", strconv.FormatBool(isWayland)} os.Args = []string{os.Args[0], "", strconv.FormatBool(isWayland)}
go clipClearProcess(copySubject) go ClipClearProcess(copySubject)
} }