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
|
@ -7,6 +7,7 @@ Changelog
|
|||
- Changed catalog auto-update url from GMM's repository to SMM's
|
||||
- Added tolerance for non-standard zips containing backslash paths
|
||||
- Added a Validate warning for non-standard zips containing backslash paths
|
||||
- Fixed Validation checking that scanned selected mods in reverse order
|
||||
|
||||
1.0:
|
||||
- Changed mod list to a table with checkboxes
|
||||
|
|
|
@ -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