Skip to content

Commit

Permalink
revert
Browse files Browse the repository at this point in the history
  • Loading branch information
hacknus committed Nov 11, 2024
1 parent 05ba9e1 commit b7c4e2c
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion examples/select_file/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,4 +7,4 @@ edition = "2021"

[dependencies]
eframe = { workspace = true }
egui-file-dialog = { path = "../../"}
egui-file-dialog = { path = "../../" }
2 changes: 1 addition & 1 deletion examples/select_file/src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -39,4 +39,4 @@ fn main() -> eframe::Result<()> {
eframe::NativeOptions::default(),
Box::new(|ctx| Ok(Box::new(MyApp::new(ctx)))),
)
}
}
2 changes: 1 addition & 1 deletion examples/select_file_with_information_panel/src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit b7c4e2c

Please sign in to comment.