diff options
Diffstat (limited to 'perl-install/install')
-rw-r--r-- | perl-install/install/NEWS | 2 | ||||
-rw-r--r-- | perl-install/install/gtk.pm | 1 |
2 files changed, 3 insertions, 0 deletions
diff --git a/perl-install/install/NEWS b/perl-install/install/NEWS index 67c59fd41..898779cec 100644 --- a/perl-install/install/NEWS +++ b/perl-install/install/NEWS @@ -1,3 +1,5 @@ +- do not use pseudo Protocol "vboxmouse" during install, use "IMPS/2" instead + Version 10.4.236 - 4 October 2007, by Pascal "Pixel" Rigaux - fix copying of ../../i586/media/main medium diff --git a/perl-install/install/gtk.pm b/perl-install/install/gtk.pm index b12245ac9..37a95fa69 100644 --- a/perl-install/install/gtk.pm +++ b/perl-install/install/gtk.pm @@ -234,6 +234,7 @@ sub special_shortcuts { sub createXconf { my ($file, $mouse_type, $mouse_dev, $_wacom_dev, $Driver) = @_; + $mouse_type = 'IMPS/2' if $mouse_type eq 'vboxmouse'; symlinkf(devices::make($mouse_dev), "/dev/mouse") if $mouse_dev ne 'none'; #- needed for imlib to start on 8-bit depth visual. |