Change the app by a better name

This commit is contained in:
2025-04-12 16:33:09 +02:00
parent 8861538012
commit 258bdecc05
2 changed files with 5 additions and 5 deletions

View File

@@ -12,7 +12,7 @@ mod node;
mod read_and_write;
use byte_writer::{binary_to_string, string_to_binary};
use gui::MyApp;
use gui::Omelt;
use node::{Node, create_tree, nodes_at_vec, read_tree, tree_to_map, tree_to_string};
use read_and_write::{body_to_bin, get_map_file, is_valid_file, read_n_bytes};
@@ -120,7 +120,7 @@ fn main() -> std::io::Result<()> {
// This gives us image support:
egui_extras::install_image_loaders(&cc.egui_ctx);
Ok(Box::<MyApp>::default())
Ok(Box::<Omelt>::default())
}),
);
}