Update egui to 0.32

This commit is contained in:
2025-07-11 15:21:13 +02:00
parent 276508713f
commit c59febd924
6 changed files with 443 additions and 660 deletions

View File

@ -454,7 +454,7 @@ fn spawn_file_watcher(p: &Path) -> Inner {
let file = File::open(&path)?;
let mtime = file_mtime(&file)?;
let _ = events_tx.send(FileEvent::NewFileMTime(mtime.into()));
let _ = events_tx.send(FileEvent::NewFileMTime(mtime));
Ok(())
});