diff options
author | emersion <contact@emersion.fr> | 2017-11-20 19:45:10 +0100 |
---|---|---|
committer | emersion <contact@emersion.fr> | 2017-11-20 19:45:10 +0100 |
commit | abab2902f5051bcde93b34b5a57bf9bae93b3bab (patch) | |
tree | 708b7b8b6adf907e5a735e61b34c7cce20a5f1ce /include/rootston/desktop.h | |
parent | 80998cdf57756fe46d55921c98a745aff4848215 (diff) |
Check for subsurfaces and popups before using wlr_output_set_fullscreen_surface
Diffstat (limited to 'include/rootston/desktop.h')
-rw-r--r-- | include/rootston/desktop.h | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/include/rootston/desktop.h b/include/rootston/desktop.h index c245eb09..8bf1f6eb 100644 --- a/include/rootston/desktop.h +++ b/include/rootston/desktop.h @@ -19,13 +19,14 @@ struct roots_output { struct wlr_output *wlr_output; struct wl_listener frame; struct timespec last_frame; - struct wl_list link; + struct wl_list link; // roots_desktop:outputs + struct roots_view *fullscreen_view; }; struct roots_desktop { struct wl_list views; // roots_view::link - struct wl_list outputs; + struct wl_list outputs; // roots_output::link struct timespec last_frame; struct roots_server *server; |