Changeset 4685


Ignore:
Timestamp:
2003-06-16T11:52:51+12:00 (21 years ago)
Author:
kjdon
Message:

cleared the message log when coll changed

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/gli/src/org/greenstone/gatherer/gui/CreatePane.java

    r4675 r4685  
    215215    public void collectionChanged(boolean ready) {
    216216    ///ystem.err.println("Collection changed... ");
    217     if(Gatherer.c_man != null && Gatherer.c_man.ready()) {
    218 
     217    if(Gatherer.c_man != null && ready) {
     218        ///ystem.out.println("create coll changed");
    219219        if (!processing &&this.options_pane!=null) {
    220220        // we only do this if we are not processing - if we are processing, then we haven't added the new entry yet, and it will be added by another method
     
    223223        Collection current_collection = Gatherer.c_man.getCollection();
    224224        if (current_collection != previous_collection) {
     225        message_log.setText(null);
    225226        this.options_pane = new OptionsPane(message_log, current_collection.build_options);
    226227        previous_collection = current_collection;
Note: See TracChangeset for help on using the changeset viewer.