Skip to content

Commit

Permalink
Deprecate MoveFocusedWindowToWorkspace(Silent)...
Browse files Browse the repository at this point in the history
... in favor of MoveToWorkspace(Silent)
  • Loading branch information
sij1nk committed Jan 27, 2024
1 parent 9c2bb92 commit 28f00f6
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions src/dispatch.rs
Original file line number Diff line number Diff line change
Expand Up @@ -291,9 +291,14 @@ pub enum DispatchType<'a> {
),
/// This dispatcher moves the focused window to a specified workspace, and
/// changes the active workspace aswell
#[deprecated(since = "0.3.13", note = "use MoveToWorkspace(work, None) instead")]
MoveFocusedWindowToWorkspace(WorkspaceIdentifier<'a>),
/// This dispatcher moves the focused window to a specified workspace, and
/// does not change workspaces
#[deprecated(
since = "0.3.13",
note = "use MoveToWorkspaceSilent(work, None) instead"
)]
MoveFocusedWindowToWorkspaceSilent(WorkspaceIdentifier<'a>),
/// This dispatcher floats a window (current if not specified)
ToggleFloating(Option<WindowIdentifier<'a>>),
Expand Down

0 comments on commit 28f00f6

Please sign in to comment.