diff options
author | Scott Anderson <scott@anderso.nz> | 2018-06-14 20:46:16 +1200 |
---|---|---|
committer | Scott Anderson <scott@anderso.nz> | 2018-06-14 20:46:16 +1200 |
commit | 47985d2dc56a6af469ac9375e7548136765aff16 (patch) | |
tree | 59d2cd44330ddd9b61627daecb7b6fca57838d99 /include/wlr/backend/session.h | |
parent | 9a1f0e2d5fe56870f3bd7d12113742766e89f4e6 (diff) |
Multiseat fixes
Diffstat (limited to 'include/wlr/backend/session.h')
-rw-r--r-- | include/wlr/backend/session.h | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/include/wlr/backend/session.h b/include/wlr/backend/session.h index 4d04b363..1cf41939 100644 --- a/include/wlr/backend/session.h +++ b/include/wlr/backend/session.h @@ -25,8 +25,12 @@ struct wlr_session { struct wl_signal session_signal; bool active; + /* + * 0 if virtual terminals are not supported + * i.e. seat != "seat0" + */ unsigned vtnr; - char seat[8]; + char seat[256]; struct udev *udev; struct udev_monitor *mon; |