summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorJoão Pereira <[email protected]>2024-10-28 02:15:21 +0100
committerGitHub <[email protected]>2024-10-28 02:15:21 +0100
commit7e484188e7492ac7945c854bcc3f26cec1863c91 (patch)
tree66d8be797889626d2853ee2bbf17d60e15bcba4b /lib
parentb56e169214b93fbb866401b60744a5152e278220 (diff)
fix: #57 hyprland fullscreen enum (#58)
Diffstat (limited to 'lib')
-rw-r--r--lib/hyprland/client.vala5
1 files changed, 3 insertions, 2 deletions
diff --git a/lib/hyprland/client.vala b/lib/hyprland/client.vala
index 3df644b..3f2d0fb 100644
--- a/lib/hyprland/client.vala
+++ b/lib/hyprland/client.vala
@@ -73,10 +73,11 @@ public class Client : Object {
}
}
+[Flags]
public enum Fullscreen {
CURRENT = -1,
NONE = 0,
- FULLSCREEN = 1,
- MAXIMIZED = 2,
+ MAXIMIZED = 1,
+ FULLSCREEN = 2,
}
}