summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--NEWS2
-rw-r--r--lib/Xconfig/xfree.pm4
2 files changed, 3 insertions, 3 deletions
diff --git a/NEWS b/NEWS
index ad55944..fc5cf29 100644
--- a/NEWS
+++ b/NEWS
@@ -1,6 +1,6 @@
- XFdrake:
o don't write sections in xorg.conf for USB wacom tablets, Synaptics
- touchpads, mouses and keyboards
+ touchpads, mouses using "evdev" or "mouse" and keyboards
Version 0.79 - 14 September 2009
diff --git a/lib/Xconfig/xfree.pm b/lib/Xconfig/xfree.pm
index b248b7f..c53e2ca 100644
--- a/lib/Xconfig/xfree.pm
+++ b/lib/Xconfig/xfree.pm
@@ -120,8 +120,8 @@ sub get_mice {
}
sub set_mice {
my ($raw_X, @mice) = @_;
- @mice = grep { $_->{Driver} || !$_->{Protocol} } @mice;
- my @raw_mice = _new_mouse_sections($raw_X, map { delete $_->{Driver} || 'evdev' } @mice);
+ @mice = grep { $_->{Driver} && $_->{Driver} ne 'evdev' } @mice;
+ my @raw_mice = _new_mouse_sections($raw_X, map { delete $_->{Driver} } @mice);
mapn {
my ($raw_mouse, $mouse) = @_;
raw_import_section($raw_mouse, $mouse);