We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6dc9626 commit 1d73047Copy full SHA for 1d73047
src/importexport/guitarpro/internal/importgtp.cpp
@@ -2853,10 +2853,11 @@ static void createLinkedTabs(MasterScore* score)
2853
StaffTypes::TAB_5SIMPLE,
2854
StaffTypes::TAB_6SIMPLE,
2855
StaffTypes::TAB_7SIMPLE,
2856
- StaffTypes::TAB_8SIMPLE
+ StaffTypes::TAB_8SIMPLE,
2857
+ StaffTypes::TAB_9SIMPLE,
2858
};
2859
- size_t index = (lines >= 4 && lines <= 8) ? lines - 4 : 2;
2860
+ size_t index = (lines >= 4 && lines <= 9) ? lines - 4 : 2;
2861
2862
dstStaff->setStaffType(fr, *StaffType::preset(types.at(index)));
2863
dstStaff->setLines(fr, static_cast<int>(lines));
0 commit comments