Changeset 4635 for trunk


Ignore:
Timestamp:
2003-06-13T10:37:35+12:00 (21 years ago)
Author:
kjdon
Message:

the index list was going blank when the number of assigned elements was increased - needed to reset teh model in the JList

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/gli/src/org/greenstone/gatherer/cdm/IndexManager.java

    r4622 r4635  
    569569        source_model.add("text");
    570570        source_model.addAll(gatherer.c_man.msm.getAssignedElements());
     571        // reset the model in the list - needed if the model is larger than when it was first created, the list doesn't display
     572        source_list.setListData(source_model);
     573       
    571574        }
    572575        // Faster than a NPE its the - 'Super class'.
Note: See TracChangeset for help on using the changeset viewer.