Fixed Validation checking that scanned selected mods in reverse order

This commit is contained in:
Vhati 2013-08-24 20:01:33 -04:00
parent 33064ebff2
commit 1f2662f3f0
2 changed files with 2 additions and 1 deletions

View file

@ -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 );