separate features to submodules

This commit is contained in:
yggverse 2024-09-22 17:34:22 +03:00
parent 80fecec656
commit c38363b8cc
5 changed files with 107 additions and 65 deletions

View file

@ -41,7 +41,10 @@ fn main() -> glib::ExitCode {
};
move |this| {
browser::new(&this, db.clone(), 640, 480).widget.present();
browser::Browser::new(&this, db.clone(), 640, 480)
.widget()
.gtk()
.present();
}
});