Commit 2e0dd710 authored by Mark Knapp's avatar Mark Knapp

Update label width when tabbed.

Fixed the label not being centered when loaded hidden until after
clicking the slider.
parent 0c784013
......@@ -338,7 +338,7 @@ function throttle(func, wait, options) {
var valStr = this.customTrFn && useCustomTr ? '' + this.customTrFn(value) : '' + value,
getWidth = false;
if(label.rzsv === undefined || label.rzsv.length != valStr.length)
if(label.rzsv === undefined || label.rzsv.length != valStr.length || (label.rzsv.length > 0 && label.rzsw == 0))
{
getWidth = true;
label.rzsv = valStr;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment