diff options
author | Thierry Vignaud <thierry.vignaud@gmail.com> | 2016-07-14 17:40:52 +0200 |
---|---|---|
committer | Thierry Vignaud <thierry.vignaud@gmail.com> | 2016-07-14 17:59:06 +0200 |
commit | 1dad9ad051c124424812967e7569462a6c6b3238 (patch) | |
tree | 52db7abf5f4c90ce5278c80ba4475211579af6fb /lib/Xconfig | |
parent | 30ae381dedf1ed4b6d581de7086e45a8ae7509e3 (diff) | |
download | drakx-kbd-mouse-x11-1dad9ad051c124424812967e7569462a6c6b3238.tar drakx-kbd-mouse-x11-1dad9ad051c124424812967e7569462a6c6b3238.tar.gz drakx-kbd-mouse-x11-1dad9ad051c124424812967e7569462a6c6b3238.tar.bz2 drakx-kbd-mouse-x11-1dad9ad051c124424812967e7569462a6c6b3238.tar.xz drakx-kbd-mouse-x11-1dad9ad051c124424812967e7569462a6c6b3238.zip |
stop installing/configuring vboxmouse (mga#18917)
VBox rely on evdev (kernel) + libinput (userspace) like everyone these
days.
VMs must just use USB tablet as input device (which is now the default)
Diffstat (limited to 'lib/Xconfig')
-rw-r--r-- | lib/Xconfig/xfree.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Xconfig/xfree.pm b/lib/Xconfig/xfree.pm index 8c1aeff..100e47e 100644 --- a/lib/Xconfig/xfree.pm +++ b/lib/Xconfig/xfree.pm @@ -131,7 +131,7 @@ sub set_mice { sub _is_mouse { my ($entry) = @_; my $Driver = val($entry->{Driver}); - member($Driver, qw(mouse vboxmouse)) || $Driver eq 'evdev' && !val($entry->{XkbLayout}); + $Driver eq 'mouse' || $Driver eq 'evdev' && !val($entry->{XkbLayout}); } sub _new_mouse_sections { my ($raw_X, @Drivers) = @_; |