diff --git a/cosmic-applet-input-sources/src/lib.rs b/cosmic-applet-input-sources/src/lib.rs index 659a9bd0..f90b3e44 100644 --- a/cosmic-applet-input-sources/src/lib.rs +++ b/cosmic-applet-input-sources/src/lib.rs @@ -4,7 +4,7 @@ mod localize; use cosmic::iced::{Alignment, Length}; -use cosmic::surface_message::{SurfaceMessage, MessageWrapper}; +use cosmic::surface_message::{MessageWrapper, SurfaceMessage}; use cosmic::{ app::Core, applet::{self}, diff --git a/cosmic-applet-notifications/src/lib.rs b/cosmic-applet-notifications/src/lib.rs index 6724fd13..567b3405 100644 --- a/cosmic-applet-notifications/src/lib.rs +++ b/cosmic-applet-notifications/src/lib.rs @@ -17,7 +17,7 @@ use cosmic::{ window, Alignment, Length, Limits, Subscription, }, iced_widget::{scrollable, Column}, - surface_message::{SurfaceMessage, MessageWrapper}, + surface_message::{MessageWrapper, SurfaceMessage}, theme, widget::{button, container, divider, icon, text}, Element, Task, diff --git a/cosmic-applet-tiling/src/window.rs b/cosmic-applet-tiling/src/window.rs index 21778e52..1aae52c3 100644 --- a/cosmic-applet-tiling/src/window.rs +++ b/cosmic-applet-tiling/src/window.rs @@ -16,7 +16,7 @@ use cosmic::{ Length, Limits, Subscription, Task, }, iced_widget::{column, row}, - surface_message::{SurfaceMessage, MessageWrapper}, + surface_message::{MessageWrapper, SurfaceMessage}, theme, widget::{ container, divider, diff --git a/cosmic-applet-time/src/window.rs b/cosmic-applet-time/src/window.rs index 8ef9e7be..a66e228a 100644 --- a/cosmic-applet-time/src/window.rs +++ b/cosmic-applet-time/src/window.rs @@ -5,7 +5,7 @@ use std::str::FromStr; use chrono::{Datelike, Timelike}; use cosmic::iced_futures::stream; -use cosmic::surface_message::{SurfaceMessage, MessageWrapper}; +use cosmic::surface_message::{MessageWrapper, SurfaceMessage}; use cosmic::widget::Id; use cosmic::{ app, diff --git a/cosmic-applet-workspaces/src/components/app.rs b/cosmic-applet-workspaces/src/components/app.rs index 2b362fff..fa639c86 100644 --- a/cosmic-applet-workspaces/src/components/app.rs +++ b/cosmic-applet-workspaces/src/components/app.rs @@ -21,7 +21,7 @@ use cosmic::{ Length, Limits, Subscription, }, iced_core::{Background, Border}, - surface_message::{SurfaceMessage, MessageWrapper}, + surface_message::{MessageWrapper, SurfaceMessage}, widget::{autosize, container, horizontal_space, vertical_space, Id}, Element, Task, Theme, };