diff options
author | Vito Caputo <vcaputo@pengaru.com> | 2017-03-31 03:31:44 -0700 |
---|---|---|
committer | Vito Caputo <vcaputo@pengaru.com> | 2017-04-04 17:48:58 -0700 |
commit | f26f79f361eebb9af08ce64bc1c2f35b705e2927 (patch) | |
tree | 91ba988a3075dfea64bd4a37be7f89f503911925 /src/window.h | |
parent | 7a13afda4a51c28025eaae7789d8afb7e076d591 (diff) |
window: drop configuring member from vwm_window_t
Rather than setting this configuring flag for the sake of
vwm_screen_is_empty() to ignore, simply supply the xwin to ignore if
desired.
Diffstat (limited to 'src/window.h')
-rw-r--r-- | src/window.h | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/src/window.h b/src/window.h index 3b3c745..7db1d13 100644 --- a/src/window.h +++ b/src/window.h @@ -34,7 +34,6 @@ typedef struct _vwm_window_t { unsigned int autoconfigured:3; /* autoconfigured window states (none/quarter/half/full/all) */ unsigned int mapping:1; /* is the window being mapped? (by vwm) */ unsigned int unmapping:1; /* is the window being unmapped? (by vwm) */ - unsigned int configuring:1; /* is the window being configured/placed? (by vwm) */ unsigned int shelved:1; /* is the window shelved? */ } vwm_window_t; |