Auto scroll lyrics

This commit is contained in:
Matthias Neeracher 2008-03-24 01:04:05 +00:00
parent db8433dfe1
commit 2e01341996
2 changed files with 3 additions and 1 deletions

2
NEWS
View File

@ -12,7 +12,7 @@
- Fixed numerous bugs. - Fixed numerous bugs.
- Reorganized file import/export facilities. - Reorganized file import/export facilities.
- Now generating much more conformant VoiceXML. - Now generating much more conformant MusicXML.
- Now capable of importing Band-in-a-Box and Lilypond files. - Now capable of importing Band-in-a-Box and Lilypond files.
19May07 VocalEasel 1.0a3 19May07 VocalEasel 1.0a3

View File

@ -78,6 +78,7 @@
} }
fNextMeas = fMeasure; fNextMeas = fMeasure;
fNextAt = fAt; fNextAt = fAt;
[fView scrollMeasureToVisible:fMeasure];
} }
- (void) moveToPrev - (void) moveToPrev
@ -91,6 +92,7 @@
fAt = at; fAt = at;
fNextMeas = fMeasure; fNextMeas = fMeasure;
fNextAt = fAt; fNextAt = fAt;
[fView scrollMeasureToVisible:fMeasure];
} }
- (void) highlightCursor - (void) highlightCursor