diff options
author | Tony Crisci <tony@dubstepdish.com> | 2017-12-03 17:00:17 -0500 |
---|---|---|
committer | Tony Crisci <tony@dubstepdish.com> | 2017-12-03 17:00:17 -0500 |
commit | 9afcfd44c425691180a96d4e0d6673e5ac96dcce (patch) | |
tree | 35d7016c86a5de5e662ff546ffda3394e34d6ec4 /sway | |
parent | 6a694853e5b65ab44b1b83572cc0f1c0ad8da960 (diff) |
wl-shell: class instead of app_id
Diffstat (limited to 'sway')
-rw-r--r-- | sway/desktop/wl_shell.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sway/desktop/wl_shell.c b/sway/desktop/wl_shell.c index e7b42fce..9641b911 100644 --- a/sway/desktop/wl_shell.c +++ b/sway/desktop/wl_shell.c @@ -21,7 +21,7 @@ static const char *get_prop(struct sway_view *view, enum sway_view_prop prop) { switch (prop) { case VIEW_PROP_TITLE: return view->wlr_wl_shell_surface->title; - case VIEW_PROP_APP_ID: + case VIEW_PROP_CLASS: return view->wlr_wl_shell_surface->class; default: return NULL; |