implement identity button as navigation entry primary icon

This commit is contained in:
yggverse 2024-12-11 05:44:59 +02:00
parent a5415fa4e5
commit 5348417a73
6 changed files with 66 additions and 105 deletions

View file

@ -13,7 +13,6 @@ 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>,
@ -33,7 +32,6 @@ impl Widget {
gobject.append(reload);
gobject.append(request);
gobject.append(bookmark);
gobject.append(auth);
Self { gobject }
}