fixed: SelectSlider form control is broken

This commit is contained in:
Graham Knop 2008-10-05 20:57:02 +00:00
parent 15941aaea2
commit e7e0511552
5 changed files with 17 additions and 19 deletions

View file

@ -60,7 +60,7 @@ sub _getColorForm {
);
$f->selectSlider(
-name => 'fillAlpha',
-value => [ $color->getFillAlpha ],
-value => $color->getFillAlpha,
-options=> \%transparencies,
-label => $i18n->get('fill alpha'),
-hoverHelp => $i18n->get('fill alpha description'),
@ -78,7 +78,7 @@ sub _getColorForm {
);
$f->selectSlider(
-name => 'strokeAlpha',
-value => [ $color->getStrokeAlpha ],
-value => $color->getStrokeAlpha,
-options=> \%transparencies,
-label => $i18n->get('stroke alpha'),
-hoverHelp => $i18n->get('stroke alpha description'),