If an episode is being downloaded we setup a callback that will supervise the widget and update it's state once the download action is completed and the episode rowid is removed from `manager::ACTIVEDOWNLOADS`.
16 lines
373 B
Rust
16 lines
373 B
Rust
mod aboutdialog;
|
|
pub mod appnotif;
|
|
mod empty;
|
|
mod episode;
|
|
mod home_view;
|
|
mod show;
|
|
mod shows_view;
|
|
|
|
pub use self::aboutdialog::about_dialog;
|
|
pub use self::empty::EmptyView;
|
|
pub use self::episode::EpisodeWidget;
|
|
pub use self::home_view::HomeView;
|
|
pub use self::show::ShowWidget;
|
|
pub use self::show::{mark_all_notif, remove_show_notif};
|
|
pub use self::shows_view::ShowsView;
|