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

Enable more clippy lints (#7474)

This commit is contained in:
Emil Ernerfeldt
2025-08-24 16:27:28 +02:00
committed by GitHub
parent 608de4a264
commit 0fad7d8503
4 changed files with 8 additions and 8 deletions

View File

@@ -179,7 +179,7 @@ impl TextAgent {
if let Err(err) = self.input.focus() {
log::error!("failed to set focus: {}", super::string_from_js_value(&err));
};
}
}
pub fn blur(&self) {
@@ -191,7 +191,7 @@ impl TextAgent {
if let Err(err) = self.input.blur() {
log::error!("failed to set focus: {}", super::string_from_js_value(&err));
};
}
}
}