(from Denk Padje)
a small patch here that uses math.round() instead of int() for "percent" mapping in Canvas tooltip.
This commit is contained in:
parent
5eeb3d7702
commit
bd1fa5b201
1 changed files with 1 additions and 1 deletions
|
@ -166,7 +166,7 @@ var Tooltip = {
|
|||
_remapValue: func(val)
|
||||
{
|
||||
if (me._mapping == "") return val;
|
||||
if (me._mapping == "percent") return int(val * 100);
|
||||
if (me._mapping == "percent") return math.round(val * 100);
|
||||
|
||||
# TODO - translate me!
|
||||
if (me._mapping == "on-off") return (val == 1) ? "ON" : "OFF";
|
||||
|
|
Loading…
Reference in a new issue