Skip to content

Commit

Permalink
remove dead code
Browse files Browse the repository at this point in the history
  • Loading branch information
anilbey committed Dec 3, 2022
1 parent 1be629f commit 06ef73b
Showing 1 changed file with 0 additions and 14 deletions.
14 changes: 0 additions & 14 deletions src/gui.rs
Original file line number Diff line number Diff line change
Expand Up @@ -34,16 +34,6 @@ pub(super) struct NWBView {
h5_file: Option<hdf5::File>,
}

// impl Default for NWBView {
// fn default() -> Self {
// NWBView {
// dropped_files: Default::default(),
// picked_path: None,
// h5_file: None,
// }
// }
// }

impl eframe::App for NWBView {
fn update(&mut self, ctx: &egui::Context, _frame: &mut eframe::Frame) {
egui::CentralPanel::default().show(ctx, |ui| {
Expand All @@ -64,11 +54,7 @@ impl eframe::App for NWBView {
if let Some(hdf_file) = &self.h5_file {
ui.horizontal(|ui| {
ui.label("NWB Contents");
// let groups = hdf::get_subgroups(hdf_file);
create_group_recurision(hdf_file, ui);
// ui.collapsing(hdf_file.name(), |ui| {
// create_group_recurision(hdf_file, ui);
// });
});
}

Expand Down

0 comments on commit 06ef73b

Please sign in to comment.