implement separated mod for window widget, rename getters

This commit is contained in:
yggverse 2024-10-06 05:03:45 +03:00
parent 13292a977d
commit 1e00c5930c
5 changed files with 58 additions and 64 deletions

View file

@ -159,10 +159,10 @@ impl App {
}
// Assign browser window to this application
browser.widget().set_application(Some(this));
browser.widget_gobject().set_application(Some(this));
// Show main widget
browser.widget().present();
browser.widget_gobject().present();
}
});