mirror of
https://github.com/swaywm/sway.git
synced 2024-11-29 11:21:28 +00:00
wl-shell: class instead of app_id
This commit is contained in:
parent
6a694853e5
commit
9afcfd44c4
|
@ -42,6 +42,7 @@ enum sway_view_type {
|
||||||
enum sway_view_prop {
|
enum sway_view_prop {
|
||||||
VIEW_PROP_TITLE,
|
VIEW_PROP_TITLE,
|
||||||
VIEW_PROP_APP_ID,
|
VIEW_PROP_APP_ID,
|
||||||
|
VIEW_PROP_CLASS,
|
||||||
VIEW_PROP_INSTANCE,
|
VIEW_PROP_INSTANCE,
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
|
@ -21,7 +21,7 @@ static const char *get_prop(struct sway_view *view, enum sway_view_prop prop) {
|
||||||
switch (prop) {
|
switch (prop) {
|
||||||
case VIEW_PROP_TITLE:
|
case VIEW_PROP_TITLE:
|
||||||
return view->wlr_wl_shell_surface->title;
|
return view->wlr_wl_shell_surface->title;
|
||||||
case VIEW_PROP_APP_ID:
|
case VIEW_PROP_CLASS:
|
||||||
return view->wlr_wl_shell_surface->class;
|
return view->wlr_wl_shell_surface->class;
|
||||||
default:
|
default:
|
||||||
return NULL;
|
return NULL;
|
||||||
|
|
Loading…
Reference in a new issue