1
0
Fork 0
mirror of synced 2024-05-20 12:22:42 +12:00
czkawka/czkawka_gui/src/gui_options.rs

11 lines
244 B
Rust
Raw Normal View History

2021-01-25 00:01:02 +13:00
#[derive(Clone)]
pub struct GUIOptions {}
impl GUIOptions {
pub fn create_from_builder(_builder: &gtk::Builder) -> Self {
// let notebook_main: gtk::Notebook = builder.get_object("notebook_main").unwrap();
Self {}
}
}