diff options
author | Drew DeVault <sir@cmpwn.com> | 2018-06-14 10:37:06 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-06-14 10:37:06 -0700 |
commit | 8e33deb0beb033dd1ddff86d6a071b1a5faa8fdb (patch) | |
tree | 49449ef103b82ffc2e6ef4bbf1cfc43d3f58a8f6 /include/wlr | |
parent | d27eeaa14c9a35c709f09de862aa6d4f0ef9ff83 (diff) | |
parent | 964e0a50beabe03d84f042209fc019909b631e05 (diff) |
Merge pull request #1063 from ascent12/multi-seat
Multiseat fixes
Diffstat (limited to 'include/wlr')
-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; |