fix: revert change of cosmic::Task to cosmic::app::Task

This change caused all uses of `cosmic::Task` to be coerced into a
message type specific to `cosmic::app`. Thus, users were forced to
create messages that are wrapped in `cosmic::app::Message` enums.
This commit is contained in:
Michael Aaron Murphy 2024-11-25 06:36:02 +01:00
parent 0ef3cced6a
commit 637d932669
No known key found for this signature in database
GPG key ID: B2732D4240C9212C

View file

@ -22,9 +22,7 @@ pub use app::{Application, ApplicationExt};
#[cfg(feature = "applet")]
pub mod applet;
#[cfg(feature = "winit")]
pub use app::Task;
pub use iced::Task;
pub mod task;
pub mod config;