From 7e484188e7492ac7945c854bcc3f26cec1863c91 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jo=C3=A3o=20Pereira?= Date: Mon, 28 Oct 2024 02:15:21 +0100 Subject: fix: #57 hyprland fullscreen enum (#58) --- lib/hyprland/client.vala | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'lib/hyprland/client.vala') 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, } } -- cgit v1.2.3