Fix subscription for iced::pure::Application
This commit is contained in:
parent
9b23ea698e
commit
820d332736
1 changed files with 4 additions and 0 deletions
|
|
@ -158,6 +158,10 @@ where
|
||||||
A::update(&mut self.application, message)
|
A::update(&mut self.application, message)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
fn subscription(&self) -> Subscription<Self::Message> {
|
||||||
|
A::subscription(&self.application)
|
||||||
|
}
|
||||||
|
|
||||||
fn view(&mut self) -> crate::Element<'_, Self::Message> {
|
fn view(&mut self) -> crate::Element<'_, Self::Message> {
|
||||||
let content = A::view(&self.application);
|
let content = A::view(&self.application);
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue