We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
I add <input type="text" /> for inputing. It can input via keyboard, but can't paste text via cmd + v on MacOS.
<input type="text" />
paste text into inputs via shortcut key
Operating System - Mac OS, version 12.1.0 X64 Node.js environment Node.js - 14.17.0 @tauri-apps/cli - 1.0.0-beta.10 @tauri-apps/api - 1.0.0-beta.8 Global packages npm - 6.14.13 yarn - 1.22.15 Rust environment rustc - 1.58.0 cargo - 1.58.0 App directory structure /node_modules /public /src-tauri /build /.idea /src App tauri.rs - 1.0.0-beta.8 build-type - bundle CSP - default-src blob: data: filesystem: ws: wss: http: https: tauri: 'unsafe-eval' 'unsafe-inline' 'self' img-src: 'self' distDir - ../build devPath - http://localhost:3000 framework - React
No response
The text was updated successfully, but these errors were encountered:
duplicate of #2397
tldr: on macOS you need to add a menu with native copy+paste+cut, it can be on macOS only if you want using #[cfg(target_os="macos")]
#[cfg(target_os="macos")]
Sorry, something went wrong.
Thanks a lot, I'll give it a try
duplicate of #2397 tldr: on macOS you need to add a menu with native copy+paste+cut, it can be on macOS only if you want using #[cfg(target_os="macos")]
Thanks a lot, I'll give it a try too.
No branches or pull requests
Describe the bug
I add
<input type="text" />
for inputing. It can input via keyboard, but can't paste text via cmd + v on MacOS.Reproduction
Expected behavior
paste text into inputs via shortcut key
Platform and versions
Stack trace
No response
Additional context
No response
The text was updated successfully, but these errors were encountered: