diff options
author | Tony Crisci <[email protected]> | 2018-01-21 09:09:53 -0500 |
---|---|---|
committer | Tony Crisci <[email protected]> | 2018-01-21 09:09:53 -0500 |
commit | 0e3eae4baa7717321ec87cf2c46f6798e89e3ded (patch) | |
tree | d6624a2fa66f344d9db09e43af0fb293f2ab2d3a /sway/tree/container.c | |
parent | 1156523ccf8b45102333cca7d80b3451930b48e8 (diff) |
view interface
Diffstat (limited to 'sway/tree/container.c')
-rw-r--r-- | sway/tree/container.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sway/tree/container.c b/sway/tree/container.c index e224539f..b7b9bc68 100644 --- a/sway/tree/container.c +++ b/sway/tree/container.c @@ -157,7 +157,7 @@ swayc_t *new_view(swayc_t *sibling, struct sway_view *sway_view) { if (!sway_assert(sibling, "new_view called with NULL sibling/parent")) { return NULL; } - const char *title = sway_view->iface.get_prop(sway_view, VIEW_PROP_TITLE); + const char *title = view_get_title(sway_view); swayc_t *swayc = new_swayc(C_VIEW); wlr_log(L_DEBUG, "Adding new view %p:%s to container %p %d", swayc, title, sibling, sibling ? sibling->type : 0); |