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
Describe the bug
The clipboard is not working on Wayland. arboard supports only Wayland terminal applications, not graphical applications.
arboard
To Reproduce Steps to reproduce the behavior:
use eframe::egui; fn main() { let options = eframe::NativeOptions::default(); eframe::run_native( "My egui App", options, Box::new(|_cc| Box::new(MyApp::default())), ); } struct MyApp { s: String, } impl Default for MyApp { fn default() -> Self { Self { s: String::new() } } } impl eframe::App for MyApp { fn update(&mut self, ctx: &egui::Context, _frame: &mut eframe::Frame) { egui::CentralPanel::default().show(ctx, |ui| { if ui.button("copy test string to clipboard").clicked() { ctx.output().copied_text = "hello, world!".into(); } ui.text_edit_multiline(&mut self.s); }); } }
Expected behavior Clipboard should work as expected.
Desktop (please complete the following information):
The text was updated successfully, but these errors were encountered:
The current clipboard was super inconsistent or not working at all for me in Wayland, using eframe. Fix in #1613 works consistently now.
eframe
Thanks!
Sorry, something went wrong.
Successfully merging a pull request may close this issue.
Describe the bug
The clipboard is not working on Wayland.
arboard
supports only Wayland terminal applications, not graphical applications.To Reproduce
Steps to reproduce the behavior:
Expected behavior
Clipboard should work as expected.
Desktop (please complete the following information):
The text was updated successfully, but these errors were encountered: