Merge pull request #1063 from ascent12/multi-seat

Multiseat fixes
This commit is contained in:
Drew DeVault 2018-06-14 10:37:06 -07:00 committed by GitHub
commit 8e33deb0be
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
5 changed files with 50 additions and 29 deletions

View file

@ -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;