Skip to content

Commit 62d7dfe

Browse files
committed
Fix LFP time axis to show time labels > 10000 ms
1 parent 5db8bbe commit 62d7dfe

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

Source/Processors/LfpDisplayNode/LfpDisplayCanvas.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1124,7 +1124,7 @@ void LfpTimescale::setTimebase(float t)
11241124
{
11251125
String labelString = String(timebase/10.0f*1000.0f*i);
11261126

1127-
labels.add(labelString.substring(0,4));
1127+
labels.add(labelString.substring(0,6));
11281128
}
11291129

11301130
repaint();

0 commit comments

Comments
 (0)