Skip to content

Commit

Permalink
Make slider button round
Browse files Browse the repository at this point in the history
  • Loading branch information
yishayw committed May 23, 2022
1 parent c062c22 commit 649ab78
Showing 1 changed file with 7 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -2105,6 +2105,13 @@ package mx.controls.sliderClasses
thumb.thumbIndex = i;
thumb.visible = true;
thumb.enabled = enabled;
// default styles
thumb.height = 16;
thumb.width = 16;
COMPILE::JS
{
thumb.element.style.borderRadius = "50%";
}
//porting notes, removed this missing assignments, @todo review:
/* thumb.upSkinName = "thumbUpSkin";
thumb.downSkinName = "thumbDownSkin";
Expand Down

0 comments on commit 649ab78

Please sign in to comment.