From b92c94ce7ec36b1b3db92fd6244f305932d7666c Mon Sep 17 00:00:00 2001 From: Matthias Neeracher Date: Sun, 13 Jan 2008 16:40:25 +0000 Subject: [PATCH] Fix flipped test for division realignment --- Sources/VLModel.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Sources/VLModel.cpp b/Sources/VLModel.cpp index 5d2fdc7..0f440cb 100644 --- a/Sources/VLModel.cpp +++ b/Sources/VLModel.cpp @@ -1097,7 +1097,7 @@ static VLNoteList Realign(const VLNoteList & notes, } } } - if (fromProp.fDivisions == toProp.fDivisions) { + if (fromProp.fDivisions != toProp.fDivisions) { VLRealigner realign(fromProp.fDivisions, toProp.fDivisions); VLNoteList alignedNotes;