aboutsummaryrefslogtreecommitdiffstats
path: root/sway/tree/view.c
diff options
context:
space:
mode:
Diffstat (limited to 'sway/tree/view.c')
-rw-r--r--sway/tree/view.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/sway/tree/view.c b/sway/tree/view.c
index 00dc4721..d62a0667 100644
--- a/sway/tree/view.c
+++ b/sway/tree/view.c
@@ -35,7 +35,7 @@
35#include "pango.h" 35#include "pango.h"
36#include "stringop.h" 36#include "stringop.h"
37 37
38void view_init(struct sway_view *view, enum sway_view_type type, 38bool view_init(struct sway_view *view, enum sway_view_type type,
39 const struct sway_view_impl *impl) { 39 const struct sway_view_impl *impl) {
40 view->type = type; 40 view->type = type;
41 view->impl = impl; 41 view->impl = impl;
@@ -44,6 +44,7 @@ void view_init(struct sway_view *view, enum sway_view_type type,
44 view->allow_request_urgent = true; 44 view->allow_request_urgent = true;
45 view->shortcuts_inhibit = SHORTCUTS_INHIBIT_DEFAULT; 45 view->shortcuts_inhibit = SHORTCUTS_INHIBIT_DEFAULT;
46 wl_signal_init(&view->events.unmap); 46 wl_signal_init(&view->events.unmap);
47 return true;
47} 48}
48 49
49void view_destroy(struct sway_view *view) { 50void view_destroy(struct sway_view *view) {