1
0
Mirror von https://github.com/microtherion/VocalEasel.git synchronisiert 2025-05-15 17:24:30 +00:00

Prevent spurious dirtying

Dieser Commit ist enthalten in:
Matthias Neeracher 2008-07-06 11:08:20 +00:00
Ursprung 219e350751
Commit a3cb3c0bc3

@ -269,6 +269,9 @@
- (void) setSongTempo:(int)tempo
{
if (tempo == [songTempo intValue])
return;
[self willChangeSong];
[songTempo autorelease];
songTempo = [[NSNumber numberWithInt:tempo] retain];