chore: format for Rust 2024

This commit is contained in:
Vukašin Vojinović 2025-10-16 18:53:57 +02:00 committed by Victoria Brekenfeld
parent 0a8da05847
commit 1f7f0c70b7
99 changed files with 414 additions and 442 deletions

View file

@ -3,7 +3,7 @@ use std::{ops::ControlFlow, time::Instant};
use cosmic_comp_config::workspace::WorkspaceLayout;
use keyframe::{ease, functions::EaseInOutCubic};
use smithay::{
desktop::{layer_map_for_output, LayerSurface, PopupKind, PopupManager},
desktop::{LayerSurface, PopupKind, PopupManager, layer_map_for_output},
output::{Output, OutputNoMode},
utils::{Logical, Point},
wayland::{session_lock::LockSurface, shell::wlr_layer::Layer},
@ -13,14 +13,14 @@ use smithay::{
use crate::{
backend::render::ElementFilter,
shell::{
SeatExt, Shell, Workspace, WorkspaceDelta,
focus::target::KeyboardFocusTarget,
layout::{floating::FloatingLayout, tiling::ANIMATION_DURATION},
SeatExt, Shell, Workspace, WorkspaceDelta,
},
utils::{
geometry::*,
prelude::OutputExt,
quirks::{workspace_overview_is_open, WORKSPACE_OVERVIEW_NAMESPACE},
quirks::{WORKSPACE_OVERVIEW_NAMESPACE, workspace_overview_is_open},
},
wayland::protocols::workspace::WorkspaceHandle,
};