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

Formatting fixes: fix red main (#8232)

* I accidentally merged https://github.com/emilk/egui/pull/8127 without
all of its checks having been run.

I've now marked a few CI items as required
This commit is contained in:
Emil Ernerfeldt
2026-06-10 21:45:13 +02:00
committed by GitHub
parent e392fbadd4
commit b46b9e225f

View File

@@ -197,18 +197,25 @@ pub enum Key {
// `Event::Key` presses.
/// Left Shift key.
ShiftLeft,
/// Right Shift key.
ShiftRight,
/// Left Control key.
ControlLeft,
/// Right Control key.
ControlRight,
/// Left Alt / Option key.
AltLeft,
/// Right Alt / AltGr / Option key.
/// Right Alt / `AltGr` / Option key.
AltRight,
/// Left Super / Meta / Command / Windows key.
SuperLeft,
/// Right Super / Meta / Command / Windows key.
SuperRight,
@@ -219,7 +226,6 @@ pub enum Key {
/// on ISO layouts. On French AZERTY it produces `<>|`; on UK
/// QWERTY a secondary `\` / `|`. Missing from US ANSI keyboards.
IntlBackslash,
// When adding keys, remember to also update:
// * crates/egui-winit/src/lib.rs
// * Key::ALL