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

Fix some minor clippy lints from the future

This commit is contained in:
Emil Ernerfeldt
2024-09-18 09:44:23 +02:00
parent 1474c17b0d
commit 4dd89e2052
10 changed files with 12 additions and 11 deletions

View File

@@ -439,7 +439,7 @@ impl<'a> TableBuilder<'a> {
}
/// Reset all column widths.
pub fn reset(&mut self) {
pub fn reset(&self) {
let state_id = self.ui.id().with(self.id_salt);
TableState::reset(self.ui, state_id);
}