aboutsummaryrefslogtreecommitdiff
path: root/include/extensions.h
diff options
context:
space:
mode:
authorDrew DeVault <sir@cmpwn.com>2016-07-14 18:57:37 -0400
committerGitHub <noreply@github.com>2016-07-14 18:57:37 -0400
commit6abbe04e7590f3bfba13351eb87ada70ac3d506e (patch)
treef7c64d6e9d082bd080960c42e21e54edf01839de /include/extensions.h
parent1e95191900d1f16b4d195f2d05f1eb7cb1f62ad5 (diff)
parent8a232c8cfd60c1469ceaaa911f31a6d75e8ad851 (diff)
Merge pull request #743 from deklov/panel-as-shell-03
Set panels/backgrounds' geometries correctly and don't render them ex…
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 {
wlc_resource surface;
// we need the wl_resource of the surface in the destructor
struct wl_resource *wl_surface_res;
- // used to determine if client is a background
- struct wl_client *client;
};
struct panel_config {
@@ -25,6 +23,8 @@ struct panel_config {
enum desktop_shell_panel_position panel_position;
// used to determine if client is a panel
struct wl_client *client;
+ // wlc handle for this panel's surface, not set until panel is created
+ wlc_handle handle;
};
struct desktop_shell_state {