aboutsummaryrefslogtreecommitdiff
path: root/include/wlr
diff options
context:
space:
mode:
authorDrew DeVault <sir@cmpwn.com>2018-06-14 10:37:06 -0700
committerGitHub <noreply@github.com>2018-06-14 10:37:06 -0700
commit8e33deb0beb033dd1ddff86d6a071b1a5faa8fdb (patch)
tree49449ef103b82ffc2e6ef4bbf1cfc43d3f58a8f6 /include/wlr
parentd27eeaa14c9a35c709f09de862aa6d4f0ef9ff83 (diff)
parent964e0a50beabe03d84f042209fc019909b631e05 (diff)
Merge pull request #1063 from ascent12/multi-seat
Multiseat fixes
Diffstat (limited to 'include/wlr')
-rw-r--r--include/wlr/backend/session.h6
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;