diff --git a/examples/select_file/Cargo.toml b/examples/select_file/Cargo.toml index c5c6f30a..c4c0c403 100644 --- a/examples/select_file/Cargo.toml +++ b/examples/select_file/Cargo.toml @@ -7,4 +7,4 @@ edition = "2021" [dependencies] eframe = { workspace = true } -egui-file-dialog = { path = "../../"} \ No newline at end of file +egui-file-dialog = { path = "../../" } \ No newline at end of file diff --git a/examples/select_file/src/main.rs b/examples/select_file/src/main.rs index f537ea04..b8d62ec3 100644 --- a/examples/select_file/src/main.rs +++ b/examples/select_file/src/main.rs @@ -39,4 +39,4 @@ fn main() -> eframe::Result<()> { eframe::NativeOptions::default(), Box::new(|ctx| Ok(Box::new(MyApp::new(ctx)))), ) -} \ No newline at end of file +} diff --git a/examples/select_file_with_information_panel/src/main.rs b/examples/select_file_with_information_panel/src/main.rs index 2ee231c1..2e80ab6e 100644 --- a/examples/select_file_with_information_panel/src/main.rs +++ b/examples/select_file_with_information_panel/src/main.rs @@ -40,7 +40,7 @@ impl eframe::App for MyApp { if ui.button("Select file").clicked() { self.file_dialog.select_file(); } - + self.file_dialog.set_right_panel_width(200.0); self.file_dialog