remove extra getters

This commit is contained in:
yggverse 2024-11-28 01:35:48 +02:00
parent 3ce272cd70
commit 0af69d99f6
56 changed files with 240 additions and 710 deletions

View file

@ -2,7 +2,7 @@ use adw::ToolbarView;
use gtk::Box;
pub struct Widget {
gobject: ToolbarView,
pub gobject: ToolbarView,
}
impl Widget {
@ -14,9 +14,4 @@ impl Widget {
Self { gobject }
}
// Getters
pub fn gobject(&self) -> &ToolbarView {
&self.gobject
}
}