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

Commit

Permalink
Fix showing note dots on external axis while recording.
Browse files Browse the repository at this point in the history
BUG=35874960

Change-Id: Iedd440fb2be633686e7c7f2b76be86ee5ad47a00
  • Loading branch information
dektar committed Mar 1, 2017
1 parent 260ba79 commit bb99080
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -400,7 +400,7 @@ public void onLabelsChanged(List<Label> labels) {
mLabels = labels;
List<Long> timestamps = new ArrayList<>();
for (Label label : mLabels) {
if (ChartOptions.isDisplayable(label, mOriginalStart,
if (ChartOptions.isDisplayable(label, mRecordingStart,
ChartOptions.ChartPlacementType.TYPE_OBSERVE)) {
timestamps.add(label.getTimeStamp());
}
Expand Down

0 comments on commit bb99080

Please sign in to comment.