mirror of
https://github.com/emilk/egui.git
synced 2026-08-29 12:50:04 -04:00
Enforce writing username in TODO comments (#4235)
This commit is contained in:
@@ -88,7 +88,7 @@ pub(crate) fn install_document_events(runner_ref: &WebRunner) -> Result<(), JsVa
|
||||
if let Some(key) = egui_key {
|
||||
runner.input.raw.events.push(egui::Event::Key {
|
||||
key,
|
||||
physical_key: None, // TODO
|
||||
physical_key: None, // TODO(fornwall)
|
||||
pressed: true,
|
||||
repeat: false, // egui will fill this in for us!
|
||||
modifiers,
|
||||
@@ -155,7 +155,7 @@ pub(crate) fn install_document_events(runner_ref: &WebRunner) -> Result<(), JsVa
|
||||
if let Some(key) = translate_key(&event.key()) {
|
||||
runner.input.raw.events.push(egui::Event::Key {
|
||||
key,
|
||||
physical_key: None, // TODO
|
||||
physical_key: None, // TODO(fornwall)
|
||||
pressed: false,
|
||||
repeat: false,
|
||||
modifiers,
|
||||
|
||||
Reference in New Issue
Block a user