Skip to content
This repository was archived by the owner on Dec 15, 2020. It is now read-only.

Commit bb99080

Browse files
committed
Fix showing note dots on external axis while recording.
BUG=35874960 Change-Id: Iedd440fb2be633686e7c7f2b76be86ee5ad47a00
1 parent 260ba79 commit bb99080

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

OpenScienceJournal/whistlepunk_library/src/main/java/com/google/android/apps/forscience/whistlepunk/ExternalAxisController.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -400,7 +400,7 @@ public void onLabelsChanged(List<Label> labels) {
400400
mLabels = labels;
401401
List<Long> timestamps = new ArrayList<>();
402402
for (Label label : mLabels) {
403-
if (ChartOptions.isDisplayable(label, mOriginalStart,
403+
if (ChartOptions.isDisplayable(label, mRecordingStart,
404404
ChartOptions.ChartPlacementType.TYPE_OBSERVE)) {
405405
timestamps.add(label.getTimeStamp());
406406
}

0 commit comments

Comments
 (0)