summaryrefslogtreecommitdiffstats
path: root/include/extensions.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/extensions.h')
-rw-r--r--include/extensions.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/extensions.h b/include/extensions.h
index 7c508b5e..d26e95c1 100644
--- a/include/extensions.h
+++ b/include/extensions.h
@@ -11,8 +11,6 @@ struct background_config {
11 wlc_resource surface; 11 wlc_resource surface;
12 // we need the wl_resource of the surface in the destructor 12 // we need the wl_resource of the surface in the destructor
13 struct wl_resource *wl_surface_res; 13 struct wl_resource *wl_surface_res;
14 // used to determine if client is a background
15 struct wl_client *client;
16}; 14};
17 15
18struct panel_config { 16struct panel_config {
@@ -25,6 +23,8 @@ struct panel_config {
25 enum desktop_shell_panel_position panel_position; 23 enum desktop_shell_panel_position panel_position;
26 // used to determine if client is a panel 24 // used to determine if client is a panel
27 struct wl_client *client; 25 struct wl_client *client;
26 // wlc handle for this panel's surface, not set until panel is created
27 wlc_handle handle;
28}; 28};
29 29
30struct desktop_shell_state { 30struct desktop_shell_state {