Skip to content

Commit

Permalink
0.2.8, egui update
Browse files Browse the repository at this point in the history
  • Loading branch information
p4ymak committed Jul 3, 2024
1 parent 18b39c3 commit f044f66
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "egui_code_editor"
authors = ["Roman Chumak <p4ymak@yandex.ru>"]
version = "0.2.7"
version = "0.2.8"
edition = "2021"
license = "MIT"
repository = "https://github.com/p4ymak/egui_code_editor"
Expand Down
2 changes: 1 addition & 1 deletion examples/demo.rs
Original file line number Diff line number Diff line change
Expand Up @@ -129,7 +129,7 @@ fn main() -> Result<(), eframe::Error> {
eframe::run_native(
"Egui Code Editor Demo",
options,
Box::new(|cc| Box::new(CodeEditorDemo::new(cc))),
Box::new(|cc| Ok(Box::new(CodeEditorDemo::new(cc)))),
)
}

Expand Down

0 comments on commit f044f66

Please sign in to comment.