Subject: | can not use -value=>0 on singleChoicePage |
Can not use 0 (zero) as one of the values in a singleChoicePage because
of a bug: Line 92 of Tk/Wizard/Choices.pm says
my $sValue = $opt->{-value} || $opt->{-title};
Perhaps something like the following would be better?
my $sValue = defined($opt->{-value}) ? $opt->{-value} : $opt->{-title};
--
- - Martin 'Kingpin' Thurn