mirror of
https://github.com/YGGverse/Yoda.git
synced 2026-03-31 16:45:27 +00:00
require profile ownership for app
This commit is contained in:
parent
3cc6b9a76a
commit
f150e716b9
2 changed files with 4 additions and 4 deletions
|
|
@ -23,14 +23,15 @@ impl App {
|
||||||
// Constructors
|
// Constructors
|
||||||
|
|
||||||
/// Build new `Self`
|
/// Build new `Self`
|
||||||
pub fn build(profile: &Rc<Profile>) -> Self {
|
pub fn build(profile: Profile) -> Self {
|
||||||
// Init GTK
|
// Init GTK
|
||||||
let application = Application::builder()
|
let application = Application::builder()
|
||||||
.application_id(APPLICATION_ID)
|
.application_id(APPLICATION_ID)
|
||||||
.build();
|
.build();
|
||||||
|
|
||||||
// Init components
|
// 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
|
// Prevent startup warning @TODO
|
||||||
application.connect_activate(|_| {});
|
application.connect_activate(|_| {});
|
||||||
|
|
|
||||||
|
|
@ -7,7 +7,6 @@ use profile::Profile;
|
||||||
|
|
||||||
fn main() -> ExitCode {
|
fn main() -> ExitCode {
|
||||||
use app::App;
|
use app::App;
|
||||||
use std::rc::Rc;
|
|
||||||
|
|
||||||
if let Err(e) = gtk::init() {
|
if let Err(e) = gtk::init() {
|
||||||
eprintln!("Failed to initialize GTK: {e}");
|
eprintln!("Failed to initialize GTK: {e}");
|
||||||
|
|
@ -15,7 +14,7 @@ fn main() -> ExitCode {
|
||||||
}
|
}
|
||||||
|
|
||||||
match Profile::init() {
|
match Profile::init() {
|
||||||
Ok(profile) => match App::build(&Rc::new(profile)).run() {
|
Ok(profile) => match App::build(profile).run() {
|
||||||
Ok(app) => return app,
|
Ok(app) => return app,
|
||||||
Err(e) => eprintln!("Failed to initialize application: {e}"),
|
Err(e) => eprintln!("Failed to initialize application: {e}"),
|
||||||
},
|
},
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue