From a98de8d47cd026ddc28372a3b5bc410bc5949ff1 Mon Sep 17 00:00:00 2001 From: Santiago Gimeno Date: Sun, 5 Aug 2012 00:01:22 +0200 Subject: [PATCH] Add revertTo param --- lib/x11/corereqs.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/x11/corereqs.js b/lib/x11/corereqs.js index 4a9ed5f..6fcab01 100644 --- a/lib/x11/corereqs.js +++ b/lib/x11/corereqs.js @@ -388,9 +388,9 @@ module.exports = { SetInputFocus: [ - function (wid) + function (wid, revertTo) // revertTo: 0 - None, 1 - PointerRoot, 2 - Parent { - return [ 'CCSLL', [42, 0, 3, wid, 0] ]; + return [ 'CCSLL', [42, revertTo, 3, wid, 0] ]; } ],