deactivate welcome dialog, auto-generate profile on first launch, remove extra references, draft bookmarks model

This commit is contained in:
yggverse 2024-11-14 06:00:41 +02:00
parent f81e496fa4
commit b441a681f7
7 changed files with 75 additions and 25 deletions

View file

@ -176,9 +176,12 @@ impl Browser {
self.widget.gobject().present();
// Show welcome dialog on profile not selected yet (e.g. first launch)
if self.profile.database.selected().is_none() {
/* @TODO
currently this feature inactive, because profile auto-generated on first application launch
see also: src/app/browser/welcome.rs
if self.profile.database.active().is_none() {
Welcome::new(self.profile.clone(), self.widget.gobject().clone()).present();
}
} */
self
}