You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
czkawka/czkawka_gui/src/gui_options.rs

11 lines
244 B
Rust

#[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 {}
}
}