diff options
author | Alberts Muktupāvels <[email protected]> | 2014-10-11 00:12:34 +0300 |
---|---|---|
committer | monsta <[email protected]> | 2015-10-26 17:17:09 +0300 |
commit | 7a63c83038735adf2448a18500e247797e37c7e8 (patch) | |
tree | 78978f62bb437bab80f16aa9c2de4f8544dc2025 | |
parent | b93893ae50891b4eecbb1c2e4e8e380f5d307833 (diff) | |
download | marco-7a63c83038735adf2448a18500e247797e37c7e8.tar.bz2 marco-7a63c83038735adf2448a18500e247797e37c7e8.tar.xz |
window: initialize fullscreen to FALSE
This fix random bug when applications without reason opens in
fullscreen mode.
-rw-r--r-- | src/core/window.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/core/window.c b/src/core/window.c index d43b367f..877b7e3e 100644 --- a/src/core/window.c +++ b/src/core/window.c @@ -477,6 +477,7 @@ meta_window_new_with_attrs (MetaDisplay *display, window->tile_mode = META_TILE_NONE; window->tile_monitor_number = -1; window->shaded = FALSE; + window->fullscreen = FALSE; window->initially_iconic = FALSE; window->minimized = FALSE; window->was_minimized = FALSE; |