Kae Verens - 2019-06-29

I'm not a Java programmer. I work in JavaScript. but it seems the point at which to display the tempo change (which I want as well!) is in the method addSequence() in the file TuxGuitar-lib/src/org/herac/tuxguitar/player/base/MidiPlayer.java, just after the setTempoPercent line

 public void addSequence() {
    try{
      this.lock();

      MidiSequenceParser midiSequenceParser = new MidiSequenceParser(this.documentManager.getSong(), this.documentManager.getSongManager(), MidiSequenceParser.DEFAULT_PLAY_FLAGS);
      midiSequenceParser.setTempoPercent(getMode().getCurrentPercent());
      // now display the tempo somewhere
      midiSequenceParser.setSHeader( getLoopSHeader() );
      midiSequenceParser.setEHeader( getLoopEHeader() );