Skip to content

Commit

Permalink
bump egui to 0.28.1
Browse files Browse the repository at this point in the history
  • Loading branch information
trevyn committed Jul 20, 2024
1 parent b106347 commit 6e6c63e
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
8 changes: 4 additions & 4 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,10 +12,10 @@ byteorder = "1"
bytes = "1"
cpal = "0.15"
crossbeam = "0.8"
eframe = {version = "0.27", default-features = false, features = ["default_fonts", "glow", "persistence"]}
egui = "0.27"
egui_extras = {version = "0.27", features = ["image"]}
egui_node_graph2 = "0.5"
eframe = {version = "0.28.1", default-features = false, features = ["default_fonts", "glow", "persistence"]}
egui = "0.28.1"
egui_extras = {version = "0.28.1", features = ["image"]}
egui_node_graph2 = "0.6"
ehttp = "0.5"
env_logger = "0.11"
futures = "0.3"
Expand Down
2 changes: 1 addition & 1 deletion src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -660,7 +660,7 @@ async fn main() -> Result<(), Box<dyn std::error::Error>> {
.with_min_inner_size([300.0, 220.0]),
..Default::default()
},
Box::new(|cc| Box::new(App::new(cc))),
Box::new(|cc| Ok(Box::new(App::new(cc)))),
)?;

Ok(())
Expand Down

0 comments on commit 6e6c63e

Please sign in to comment.