Enter executor context only on Recipe creation
This commit is contained in:
parent
75d8de93ae
commit
09cf0b7af3
2 changed files with 12 additions and 6 deletions
|
|
@ -126,7 +126,7 @@ pub trait Application: Sized {
|
|||
let (mut application, init_command) = runtime.enter(|| Self::new());
|
||||
runtime.spawn(init_command);
|
||||
|
||||
let subscription = runtime.enter(|| application.subscription());
|
||||
let subscription = application.subscription();
|
||||
runtime.track(subscription);
|
||||
|
||||
let mut title = application.title();
|
||||
|
|
@ -255,8 +255,7 @@ pub trait Application: Sized {
|
|||
debug.update_finished();
|
||||
}
|
||||
|
||||
let subscription =
|
||||
runtime.enter(|| application.subscription());
|
||||
let subscription = application.subscription();
|
||||
runtime.track(subscription);
|
||||
|
||||
// Update window title
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue