diff options
Diffstat (limited to 'perl-install/install_steps_gtk.pm')
-rw-r--r-- | perl-install/install_steps_gtk.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/perl-install/install_steps_gtk.pm b/perl-install/install_steps_gtk.pm index 6e36560c9..4562bc127 100644 --- a/perl-install/install_steps_gtk.pm +++ b/perl-install/install_steps_gtk.pm @@ -177,7 +177,7 @@ sub selectMouse { my %old = %{$o->{mouse}}; $o->SUPER::selectMouse($force); - $old{FULLNAME} eq $o->{mouse}{FULLNAME} && !$force and return; + $old{type} eq $o->{mouse}{type} && $old{name} eq $o->{mouse}{name} && !$force and return; local $my_gtk::grab = 1; #- unsure a crazy mouse don't go wild clicking everywhere |