diff options
Diffstat (limited to 'perl-install/standalone')
-rwxr-xr-x | perl-install/standalone/harddrake2 | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/perl-install/standalone/harddrake2 b/perl-install/standalone/harddrake2 index 2f89a5ea3..380ec4825 100755 --- a/perl-install/standalone/harddrake2 +++ b/perl-install/standalone/harddrake2 @@ -181,7 +181,7 @@ my $selection = gtksignal_connect($tree->get_selection(), 'changed' => sub { show_hide($current_device->{driver} !~ /(unknown|.*\|.*)/ && $current_device->{driver} !~ /^Card:/, $module_cfg_button); $current_configurator = $configurators{$id}; - show_hide(-x scalar first(split /\s+/, $current_configurator), $config_button); # strip arguments for -x test + show_hide(-x first(split /\s+/, $current_configurator), $config_button); # strip arguments for -x test return 1; } } |