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

Fix Context::is_pointer_over_egui and Context::egui_wants_pointer_input (#8081)

* Closes https://github.com/emilk/egui/issues/8041

These functions were broken when using the new `run_ui`.
This commit is contained in:
Emil Ernerfeldt
2026-04-08 09:52:28 +02:00
committed by GitHub
parent 1fdc5c0775
commit b117a1ac19
4 changed files with 83 additions and 18 deletions

View File

@@ -13,7 +13,8 @@ workspace = true
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
eframe = { workspace = true, features = [
eframe = { workspace = true, default_features = false, features = [
"glow",
"default",
"__screenshot", # __screenshot is so we can dump a screenshot using EFRAME_SCREENSHOT_TO
] }