1
0
mirror of https://github.com/emilk/egui.git synced 2026-06-26 22:53:14 -04:00

Rename functions in Context to avoid confusion (#7773)

It's important to avoid confusion after
* https://github.com/emilk/egui/pull/7770
This commit is contained in:
Emil Ernerfeldt
2025-12-14 16:49:51 +01:00
committed by GitHub
parent bc48599f65
commit 453e34b4df
7 changed files with 99 additions and 32 deletions

View File

@@ -179,7 +179,7 @@ impl Keypad {
)
});
let is_first_show = ctx.wants_keyboard_input() && state.focus != focus;
let is_first_show = ctx.egui_wants_keyboard_input() && state.focus != focus;
if is_first_show {
let y = ctx.global_style().spacing.interact_size.y * 1.25;
state.open = true;