Skip to content

Commit

Permalink
Corner enum values now consistent with hyprctl documentation
Browse files Browse the repository at this point in the history
  • Loading branch information
Walter-Neils committed Apr 18, 2024
1 parent 1de8925 commit d9271a6
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/dispatch.rs
Original file line number Diff line number Diff line change
Expand Up @@ -143,10 +143,10 @@ impl std::fmt::Display for MonitorIdentifier<'_> {
#[allow(missing_docs)]
#[derive(Debug, Clone)]
pub enum Corner {
TopRight = 0,
TopLeft = 1,
BottomRight = 2,
BottomLeft = 3,
BottomLeft = 0,
BottomRight = 1,
TopRight = 2,
TopLeft = 3,
}

/// This enum holds options that are applied to the current workspace
Expand Down

0 comments on commit d9271a6

Please sign in to comment.