mirror of
https://github.com/emilk/egui.git
synced 2026-09-02 06:40:06 -04:00
Increase MSRV to 1.67 (#3234)
* Bump MSRV to 1.67 * clippy fixes * cargo clippy: inline format args * Add `clippy::uninlined_format_args` to cranky lints * Fix clippy on wasm * More clippy fixes
This commit is contained in:
@@ -133,7 +133,7 @@ fn ui_url(ui: &mut egui::Ui, frame: &mut eframe::Frame, url: &mut String) -> boo
|
||||
if ui.button("Random image").clicked() {
|
||||
let seed = ui.input(|i| i.time);
|
||||
let side = 640;
|
||||
*url = format!("https://picsum.photos/seed/{}/{}", seed, side);
|
||||
*url = format!("https://picsum.photos/seed/{seed}/{side}");
|
||||
trigger_fetch = true;
|
||||
}
|
||||
});
|
||||
|
||||
Reference in New Issue
Block a user