Skip to content

Commit

Permalink
Fix clicking + not selecting current multi skin
Browse files Browse the repository at this point in the history
  • Loading branch information
mchorse committed Jun 1, 2019
1 parent f1155ea commit 4df180a
Showing 1 changed file with 2 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -110,12 +110,8 @@ private void addMultiSkin()
}

this.multiList.add(rl);
this.multiList.current = this.multiList.getList().indexOf(rl);

if (this.multiList.current >= 0)
{
this.displayCurrent(this.multiList.getCurrent());
}
this.multiList.current = this.multiList.getList().size() - 1;
this.displayCurrent(this.multiList.getCurrent());
}

/**
Expand Down

0 comments on commit 4df180a

Please sign in to comment.