summaryrefslogtreecommitdiffstats
path: root/include/sway/view.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/sway/view.h')
-rw-r--r--include/sway/view.h5
1 files changed, 3 insertions, 2 deletions
diff --git a/include/sway/view.h b/include/sway/view.h
index 2707ca78..77d451e5 100644
--- a/include/sway/view.h
+++ b/include/sway/view.h
@@ -29,9 +29,8 @@ enum sway_view_type {
29 29
30enum sway_view_prop { 30enum sway_view_prop {
31 VIEW_PROP_TITLE, 31 VIEW_PROP_TITLE,
32 VIEW_PROP_CLASS,
33 VIEW_PROP_INSTANCE,
34 VIEW_PROP_APP_ID, 32 VIEW_PROP_APP_ID,
33 VIEW_PROP_INSTANCE,
35}; 34};
36 35
37/** 36/**
@@ -46,10 +45,12 @@ struct sway_view {
46 45
47 union { 46 union {
48 struct wlr_xdg_surface_v6 *wlr_xdg_surface_v6; 47 struct wlr_xdg_surface_v6 *wlr_xdg_surface_v6;
48 struct wlr_wl_shell_surface *wlr_wl_shell_surface;
49 }; 49 };
50 50
51 union { 51 union {
52 struct sway_xdg_surface_v6 *sway_xdg_surface_v6; 52 struct sway_xdg_surface_v6 *sway_xdg_surface_v6;
53 struct sway_wl_shell_surface *sway_wl_shell_surface;
53 }; 54 };
54 55
55 struct { 56 struct {