diff options
author | emersion <[email protected]> | 2018-07-09 22:39:47 +0100 |
---|---|---|
committer | emersion <[email protected]> | 2018-07-10 22:09:21 +0100 |
commit | ba3511b2431d331b735770e38e6bbd83cb5a9d66 (patch) | |
tree | a79c2994ae5b7b958723de84ab807c0d28c1d5cd /include/sway/config.h | |
parent | 8afe68f92063ff6db061f721868f601b2fc20191 (diff) |
Remove `clipboard` command and `get_clipboard` message
Diffstat (limited to 'include/sway/config.h')
-rw-r--r-- | include/sway/config.h | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/include/sway/config.h b/include/sway/config.h index d5e4116f..99575274 100644 --- a/include/sway/config.h +++ b/include/sway/config.h @@ -271,11 +271,10 @@ enum ipc_feature { IPC_FEATURE_EVENT_WINDOW = 2048, IPC_FEATURE_EVENT_BINDING = 4096, IPC_FEATURE_EVENT_INPUT = 8192, - IPC_FEATURE_GET_CLIPBOARD = 16384, - IPC_FEATURE_GET_SEATS = 32768, + IPC_FEATURE_GET_SEATS = 16384, IPC_FEATURE_ALL_COMMANDS = - 1 | 2 | 4 | 8 | 16 | 32 | 64 | 128 | 16384 | 32768, + 1 | 2 | 4 | 8 | 16 | 32 | 64 | 128 | 16384, IPC_FEATURE_ALL_EVENTS = 256 | 512 | 1024 | 2048 | 4096 | 8192, IPC_FEATURE_ALL = IPC_FEATURE_ALL_COMMANDS | IPC_FEATURE_ALL_EVENTS, |