Skip to content

Commit

Permalink
Merge pull request #214 from Walter-Neils/master
Browse files Browse the repository at this point in the history
Correct Corner enum values
  • Loading branch information
yavko committed Apr 18, 2024
2 parents 1de8925 + d9271a6 commit 867565f
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 867565f

Please sign in to comment.