Changeset 13384


Ignore:
Timestamp:
2006-11-30T16:33:45+13:00 (17 years ago)
Author:
kjdon
Message:

when adding a new plugin to a collection, only remove it from available plugins list if < systems mode, not <=

File:
1 edited

Legend:

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

    r13294 r13384  
    616616
    617617            // Remove the plugin from the available list (unless we're in a high mode, or it's UnknownPlug)
    618             if (Configuration.getMode() <= Configuration.SYSTEMS_MODE && !plugin_name.equals(StaticStrings.UNKNOWNPLUG_STR)) {
     618            if (Configuration.getMode() < Configuration.SYSTEMS_MODE && !plugin_name.equals(StaticStrings.UNKNOWNPLUG_STR)) {
    619619            plugin_combobox.removeItem(plugin);
    620620            plugin_combobox.setSelectedIndex(0);
Note: See TracChangeset for help on using the changeset viewer.