Skip to content

Commit

Permalink
楽譜集分割が機能しない問題の修正 #97
Browse files Browse the repository at this point in the history
  • Loading branch information
fourthline committed Oct 15, 2023
1 parent 5897ff9 commit 67fb974
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 1 addition & 1 deletion build.xml
Expand Up @@ -26,7 +26,7 @@
<property name="app.vendor" value="fourthline.jp" />
<property name="app.id" value="MabiIcco" />
<property name="app.name" value="MabiIcco" />
<property name="app.version" value="1.4.0" />
<property name="app.version" value="1.4.1" />
<property name="app.main-class" value="jp.fourthline.mabiicco.MabiIcco" />
<property name="class.path" value="lib/commons-compress/commons-compress-1.9.jar;lib/flatlaf/flatlaf-2.4.jar;lib/jna/jna-5.11.0.jar" />

Expand Down
2 changes: 2 additions & 0 deletions src/jp/fourthline/mabiicco/ui/mml/TrackListTable.java
Expand Up @@ -54,9 +54,11 @@ private InCheckTableModel(List<MMLTrack> trackList, boolean checkBox) {
private InCheckTableModel(MMLTrack track, List<MMLText> textList) {
this.checkBox = false;
this.checkValue = null;
int trackIndex = 0;
for (MMLText mml : textList) {
InstClass inst = MabiDLS.getInstance().getInstByProgram(track.getProgram());
dataList.add(new String[] {
Integer.toString(++trackIndex),
track.getTrackName(),
inst.toString(),
mml.mmlRankFormat()
Expand Down

0 comments on commit 67fb974

Please sign in to comment.