-
-
Notifications
You must be signed in to change notification settings - Fork 171
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
tauri: copy to clipboard #4528
base: main
Are you sure you want to change the base?
tauri: copy to clipboard #4528
Conversation
@@ -348,8 +348,8 @@ class TauriRuntime implements Runtime { | |||
writeClipboardText(text: string): Promise<void> { | |||
return writeText(text) | |||
} | |||
writeClipboardImage(_path: string): Promise<void> { | |||
throw new Error('Method not implemented.20') | |||
writeClipboardImage(path: string): Promise<void> { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@Simon-Laux What values can path
have? From my experiments, I saw absolute paths but I guess this can also bea relative blobdir path?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
blobdir paths are always absolute - at least currently.
could you rebase it to merge into #4533? |
No description provided.