From d9271a60231e2f09cb0169dcbf8230a09107a6ff Mon Sep 17 00:00:00 2001 From: Walter Neils <45408786+Walter-Neils@users.noreply.github.com> Date: Thu, 18 Apr 2024 15:25:51 -0700 Subject: [PATCH] Corner enum values now consistent with hyprctl documentation --- src/dispatch.rs | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/dispatch.rs b/src/dispatch.rs index f0470d1..777c52c 100644 --- a/src/dispatch.rs +++ b/src/dispatch.rs @@ -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