Skip to content

Commit

Permalink
fix: missing text in line verbose mode (#622)
Browse files Browse the repository at this point in the history
  • Loading branch information
ellvix authored Dec 19, 2024
1 parent e608277 commit 99a6c57
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/js/display.js
Original file line number Diff line number Diff line change
Expand Up @@ -535,7 +535,7 @@ class Display {
}
verboseText += plot.pointValuesX[position.x] + ', ';
if (plot.plotLegend) {
plot.plotLegend.y + ' is ';
verboseText += plot.plotLegend.y + ' is ';
}
verboseText += plot.pointValuesY[position.x];

Expand Down

0 comments on commit 99a6c57

Please sign in to comment.