aboutsummaryrefslogtreecommitdiff
path: root/sway
diff options
context:
space:
mode:
Diffstat (limited to 'sway')
-rw-r--r--sway/container.c7
1 files changed, 7 insertions, 0 deletions
diff --git a/sway/container.c b/sway/container.c
index 5bf59c26..1634cce0 100644
--- a/sway/container.c
+++ b/sway/container.c
@@ -53,6 +53,9 @@ static void free_swayc(swayc_t *cont) {
if (cont->class) {
free(cont->class);
}
+ if (cont->app_id) {
+ free(cont->app_id);
+ }
free(cont);
}
@@ -219,6 +222,8 @@ swayc_t *new_view(swayc_t *sibling, wlc_handle handle) {
view->name = title ? strdup(title) : NULL;
const char *class = wlc_view_get_class(handle);
view->class = class ? strdup(class) : NULL;
+ const char *app_id = wlc_view_get_app_id(handle);
+ view->app_id = app_id ? strdup(app_id) : NULL;
view->visible = true;
view->is_focused = true;
// Setup geometry
@@ -253,6 +258,8 @@ swayc_t *new_floating_view(wlc_handle handle) {
view->name = title ? strdup(title) : NULL;
const char *class = wlc_view_get_class(handle);
view->class = class ? strdup(class) : NULL;
+ const char *app_id = wlc_view_get_app_id(handle);
+ view->app_id = app_id ? strdup(app_id) : NULL;
view->visible = true;
// Set the geometry of the floating view