diff options
author | Alexander <[email protected]> | 2024-06-23 00:52:42 +0300 |
---|---|---|
committer | GitHub <[email protected]> | 2024-06-22 23:52:42 +0200 |
commit | 7f09646ab8b5b6d9f835681d0af5d7a0dc29d8f1 (patch) | |
tree | 269ecbddad6cafe84c56c167e767617fcf324ee1 /src/macros.hpp | |
parent | 0b924f541c744f96d32c9a0d98dcfd90205bab4c (diff) | |
download | Hyprland-7f09646ab8b5b6d9f835681d0af5d7a0dc29d8f1.tar.gz Hyprland-7f09646ab8b5b6d9f835681d0af5d7a0dc29d8f1.zip |
core: add ability to select previous workspace per monitor (#6598)
Co-authored-by: Крылов Александр <[email protected]>
Diffstat (limited to 'src/macros.hpp')
-rw-r--r-- | src/macros.hpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/macros.hpp b/src/macros.hpp index cacfdfea..67f6301b 100644 --- a/src/macros.hpp +++ b/src/macros.hpp @@ -24,7 +24,8 @@ #define STRVAL_EMPTY "[[EMPTY]]" -#define WORKSPACE_INVALID -1L +#define WORKSPACE_INVALID -1L +#define WORKSPACE_NOT_CHANGED -101 #define LISTENER(name) \ void listener_##name(wl_listener*, void*); \ |