add auth navbar button

This commit is contained in:
yggverse 2024-11-14 14:41:26 +02:00
parent ec95ae2580
commit f1b7fc9ac0
4 changed files with 77 additions and 0 deletions

View file

@ -13,6 +13,7 @@ pub struct Widget {
impl Widget {
// Construct
pub fn new(
auth: &impl IsA<gtk::Widget>,
base: &impl IsA<gtk::Widget>,
history: &impl IsA<gtk::Widget>,
reload: &impl IsA<gtk::Widget>,
@ -32,6 +33,7 @@ impl Widget {
gobject.append(reload);
gobject.append(request);
gobject.append(bookmark);
gobject.append(auth);
Self { gobject }
}