Ignore:
Timestamp:
2005-02-18T12:31:54+13:00 (19 years ago)
Author:
mdewsnip
Message:

GLI applet: collection building is now much happier about being cancelled. By Matthew Whyte.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/gli/src/org/greenstone/gatherer/collection/CollectionManager.java

    r9052 r9095  
    10661066        }
    10671067    }
    1068     else if(event.getStatus() == GShell.ERROR || event.getStatus() == GShell.CANCELLED) {
     1068    else if (event.getStatus() == GShell.CANCELLED) {
     1069        JOptionPane.showMessageDialog(Gatherer.g_man, Dictionary.get("CollectionManager.Build_Cancelled"), Dictionary.get("General.Error"), JOptionPane.ERROR_MESSAGE);
     1070        Gatherer.g_man.repaint();
     1071    }
     1072    else if (event.getStatus() == GShell.ERROR) {
    10691073        DebugStream.println("There was an error in the gshell:"+ event.getMessage());
    10701074        if (event.getType() == GShell.NEW) {
Note: See TracChangeset for help on using the changeset viewer.