1
0
mirror of https://github.com/emilk/egui.git synced 2026-08-29 04:40:03 -04:00

Remove the need for setting web_sys_unstable_apis (#5000)

* No longer required since https://github.com/emilk/egui/pull/4980

And despite some outdated comments, wgpu/WebGPU doesn't need it either
This commit is contained in:
Emil Ernerfeldt
2024-08-26 16:31:38 +02:00
committed by GitHub
parent 47c0aeb7b9
commit a9a6e0c2f2
13 changed files with 3 additions and 49 deletions

View File

@@ -168,7 +168,6 @@ fn set_cursor_icon(cursor: egui::CursorIcon) -> Option<()> {
}
/// Set the clipboard text.
#[cfg(web_sys_unstable_apis)]
fn set_clipboard_text(s: &str) {
if let Some(window) = web_sys::window() {
let promise = window.navigator().clipboard().write_text(s);