Skip to content

Commit 39d53f3

Browse files
committed
xml: Use variable reference in ExpandStream
1 parent a4701fe commit 39d53f3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

scripts/JSRootPainter.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1302,7 +1302,7 @@
13021302
}
13031303

13041304
Painter.chooseTimeFormat = function(awidth, ticks) {
1305-
if (awidth < .5) return ticks ? "%S.%L" : "%M:%S.%L";
1305+
if (awidth < .5) return ticks ? "%S.%L" : "%H:%M:%S.%L";
13061306
if (awidth < 30) return ticks ? "%Mm%S" : "%H:%M:%S";
13071307
awidth /= 60; if (awidth < 30) return ticks ? "%Hh%M" : "%d/%m %H:%M";
13081308
awidth /= 60; if (awidth < 12) return ticks ? "%d-%Hh" : "%d/%m/%y %Hh";

0 commit comments

Comments
 (0)