Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/engraving/dom/groups.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,7 @@ BeamMode Groups::endBeam(const ChordRest* cr, const ChordRest* prev)
Fraction smallestTickLen = Fraction(1, 8); // start with 8th
Fraction tickLenLimit = Fraction(1, 32); // only check up to 32nds because that's all thats available
// in timesig properties
while (smallestTickLen > maxTickLen || cr->tick().ticks() % smallestTickLen.ticks() != 0) {
while (smallestTickLen > maxTickLen || cr->rtick().ticks() % smallestTickLen.ticks() != 0) {
smallestTickLen /= 2; // proceed to 16th, 32nd, etc
if (smallestTickLen < tickLenLimit) {
smallestTickLen = cr->ticks();
Expand Down
Binary file added vtest/scores/beams-34.mscz
Binary file not shown.
Loading