Skip to content

Commit fe33c3e

Browse files
committed
Merge pull request #303 from whitepine/master
Fix LFP time axis to show time labels > 10000 ms
2 parents 5db8bbe + 62d7dfe commit fe33c3e

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)