Fixed Validation checking that scanned selected mods in reverse order
This commit is contained in:
parent
33064ebff2
commit
1f2662f3f0
2 changed files with 2 additions and 1 deletions
|
@ -485,7 +485,7 @@ public class ManagerFrame extends JFrame implements ActionListener, HashObserver
|
|||
StringBuilder resultBuf = new StringBuilder();
|
||||
boolean anyInvalid = false;
|
||||
|
||||
for ( int i = localModsTableModel.getRowCount()-1; i >= 0; i-- ) {
|
||||
for ( int i=0; i < localModsTableModel.getRowCount(); i++ ) {
|
||||
if ( !localModsTableModel.isSelected(i) ) continue;
|
||||
|
||||
ModFileInfo modFileInfo = localModsTableModel.getItem( i );
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue