require profile ownership for app

This commit is contained in:
yggverse 2025-03-08 08:40:16 +02:00
parent 3cc6b9a76a
commit f150e716b9
2 changed files with 4 additions and 4 deletions

View file

@ -23,14 +23,15 @@ impl App {
// Constructors
/// Build new `Self`
pub fn build(profile: &Rc<Profile>) -> Self {
pub fn build(profile: Profile) -> Self {
// Init GTK
let application = Application::builder()
.application_id(APPLICATION_ID)
.build();
// Init components
let browser = Rc::new(Browser::build(profile));
let profile = Rc::new(profile);
let browser = Rc::new(Browser::build(&profile));
// Prevent startup warning @TODO
application.connect_activate(|_| {});