From d256d73891a4806211f9de9007ea0b465cead03b Mon Sep 17 00:00:00 2001 From: Pascal Rigaux Date: Thu, 22 Feb 2001 11:56:27 +0000 Subject: (ask_from_entries_refH_powered_normalize): fix setting type to 'list' in case of format. should be only set if type is unset --- perl-install/interactive.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'perl-install') diff --git a/perl-install/interactive.pm b/perl-install/interactive.pm index de575c52b..8754970c6 100644 --- a/perl-install/interactive.pm +++ b/perl-install/interactive.pm @@ -219,7 +219,7 @@ sub ask_from_entries_refH_powered_normalize { } $e->{type} = 'iconlist' if $e->{icon2f}; $e->{type} = 'treelist' if $e->{separator}; - $e->{type} = 'list' if $e->{format}; + $e->{type} ||= 'list' if $e->{format}; add2hash_($e, { not_edit => 1, type => 'combo' }); ${$e->{val}} = $l->[0] if ($e->{type} ne 'combo' || $e->{not_edit}) && !member(${$e->{val}}, @$l); } elsif ($e->{type} eq 'range') { -- cgit v1.2.1