add header child

This commit is contained in:
yggverse 2024-09-22 12:42:34 +03:00
parent 080e07da94
commit 599b03e551

View File

@ -12,6 +12,7 @@ use gtk::{
pub struct Browser {
db: Arc<sqlite::Connection>,
pub widget: Arc<gtk::ApplicationWindow>,
pub header: Arc<header::Header>,
pub main: Arc<main::Main>,
}
@ -56,5 +57,10 @@ pub fn new(app: &Application, db: Arc<sqlite::Connection>, width: i32, height: i
widget.add_action_entries([action_tab_append, action_debug, action_quit]);
// Done
Browser { db, widget, main }
Browser {
db,
widget,
header,
main,
}
}