mirror of
https://github.com/edu4rdshl/gnome-shell.git
synced 2026-07-18 07:34:54 +00:00
js/shellDbus: Do not forward device IDs
We already pass the device event node path for identification purposes, we can stop doing that here. Part-of: <https://gitlab.gnome.org/GNOME/gnome-shell/-/merge_requests/1501>
This commit is contained in:
parent
6272490b0d
commit
51ff9ce444
1 changed files with 4 additions and 3 deletions
|
|
@ -151,9 +151,10 @@ var GnomeShell = class {
|
|||
|
||||
let connection = this._dbusImpl.get_connection();
|
||||
let info = this._dbusImpl.get_info();
|
||||
let params = { 'device-id': GLib.Variant.new('u', device.get_device_id()),
|
||||
'timestamp': GLib.Variant.new('u', timestamp),
|
||||
'action-mode': GLib.Variant.new('u', Main.actionMode) };
|
||||
let params = {
|
||||
'timestamp': GLib.Variant.new('u', timestamp),
|
||||
'action-mode': GLib.Variant.new('u', Main.actionMode),
|
||||
};
|
||||
|
||||
let deviceNode = device.get_device_node();
|
||||
if (deviceNode)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue