This now connect's directly to gst_player::Player::connect_duration_changed method. The method then sends a cross-thread msg to the Action channel in the main loop that then updates the widget.
17 lines
389 B
Rust
17 lines
389 B
Rust
mod aboutdialog;
|
|
pub mod appnotif;
|
|
mod empty;
|
|
mod episode;
|
|
mod home_view;
|
|
pub mod player;
|
|
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;
|