mirror of
https://github.com/swaywm/sway.git
synced 2025-11-01 22:58:41 -04:00
style
This commit is contained in:
parent
299406a048
commit
d72cc92541
3 changed files with 74 additions and 60 deletions
|
|
@ -30,11 +30,11 @@ enum pointer_values {
|
|||
|
||||
enum pointer_mode {
|
||||
// Target
|
||||
M_FLOATING = 1 << 0,
|
||||
M_TILING = 1 << 1,
|
||||
M_FLOATING = 1,
|
||||
M_TILING = 2,
|
||||
// Action
|
||||
M_DRAGGING = 1 << 2,
|
||||
M_RESIZING = 1 << 3,
|
||||
M_DRAGGING = 4,
|
||||
M_RESIZING = 8,
|
||||
};
|
||||
|
||||
struct pointer_button_state {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue