egui_web: fix double-paste bug
This commit is contained in:
parent
7b0f991b20
commit
934bb7f5e9
2 changed files with 5 additions and 1 deletions
|
@ -5,6 +5,9 @@ All notable changes to the `egui_web` integration will be noted in this file.
|
||||||
|
|
||||||
## Unreleased
|
## Unreleased
|
||||||
|
|
||||||
|
### Fixed ⭐
|
||||||
|
* Fix double-paste bug
|
||||||
|
|
||||||
|
|
||||||
## 0.12.0 - 2021-05-10
|
## 0.12.0 - 2021-05-10
|
||||||
|
|
||||||
|
|
|
@ -633,7 +633,8 @@ fn install_document_events(runner_ref: &AppRunnerRef) -> Result<(), JsValue> {
|
||||||
}
|
}
|
||||||
|
|
||||||
#[cfg(web_sys_unstable_apis)]
|
#[cfg(web_sys_unstable_apis)]
|
||||||
{
|
// paste is handled by IME text agent!
|
||||||
|
if false {
|
||||||
// paste
|
// paste
|
||||||
let runner_ref = runner_ref.clone();
|
let runner_ref = runner_ref.clone();
|
||||||
let closure = Closure::wrap(Box::new(move |event: web_sys::ClipboardEvent| {
|
let closure = Closure::wrap(Box::new(move |event: web_sys::ClipboardEvent| {
|
||||||
|
|
Loading…
Reference in a new issue