diff --git a/Sources/VLDocument.mm b/Sources/VLDocument.mm index 8af6ae3..60f6327 100644 --- a/Sources/VLDocument.mm +++ b/Sources/VLDocument.mm @@ -269,6 +269,9 @@ - (void) setSongTempo:(int)tempo { + if (tempo == [songTempo intValue]) + return; + [self willChangeSong]; [songTempo autorelease]; songTempo = [[NSNumber numberWithInt:tempo] retain];