adds initial version of FTR reader

This commit is contained in:
2023-02-21 09:10:35 +01:00
parent 25064f9744
commit 0e705ce0e9
38 changed files with 3061 additions and 14 deletions

View File

@ -585,6 +585,7 @@ public class WaveformView implements IWaveformView {
if (trackVerticalOffset.isEmpty()) {
waveformCanvas.setOrigin(0, 0);
}
tl.dispose();
}
private int calculateValueWidth() {
@ -595,6 +596,7 @@ public class WaveformView implements IWaveformView {
tl.setText(v.currentValue);
valueMaxWidth = Math.max(valueMaxWidth, tl.getBounds().width);
}
tl.dispose();
return valueMaxWidth + 15;
}