egui_web: fix double-paste bug

This commit is contained in:
Emil Ernerfeldt 2021-05-11 19:25:31 +02:00
parent 7b0f991b20
commit 934bb7f5e9
2 changed files with 5 additions and 1 deletions

View file

@ -5,6 +5,9 @@ All notable changes to the `egui_web` integration will be noted in this file.
## Unreleased
### Fixed ⭐
* Fix double-paste bug
## 0.12.0 - 2021-05-10

View file

@ -633,7 +633,8 @@ fn install_document_events(runner_ref: &AppRunnerRef) -> Result<(), JsValue> {
}
#[cfg(web_sys_unstable_apis)]
{
// paste is handled by IME text agent!
if false {
// paste
let runner_ref = runner_ref.clone();
let closure = Closure::wrap(Box::new(move |event: web_sys::ClipboardEvent| {