enshort namespaces, give name to gobject

This commit is contained in:
yggverse 2024-12-14 06:56:14 +02:00
parent a1617b2b1b
commit dd5fada7c7
4 changed files with 9 additions and 10 deletions

View file

@ -33,7 +33,7 @@ impl Browser {
// Init widget
let widget = Rc::new(Widget::new(
&window.widget.gobject,
&window.widget.g_box,
&[
// Connect action groups (to apply accels)
(
@ -53,7 +53,7 @@ impl Browser {
action.about.connect_activate({
let window = window.clone();
move || {
About::new().present(Some(&window.widget.gobject));
About::new().present(Some(&window.widget.g_box));
}
});