Ignore:
Timestamp:
2009-02-25T10:13:39+13:00 (15 years ago)
Author:
kjdon
Message:

GLI three modes change: file tree filters are now editable in librarian mode, and regex plugin/classifier arguments are now shown in librarian mode

Location:
gli/trunk/src/org/greenstone/gatherer/gui
Files:
2 edited

Legend:

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

    r18370 r18593  
    228228    public void modeChanged(int mode)
    229229    {
    230     collection_filter.setEditable(mode > Configuration.LIBRARIAN_MODE);
     230    collection_filter.setEditable(mode >= Configuration.LIBRARIAN_MODE);
    231231    }
    232232
  • gli/trunk/src/org/greenstone/gatherer/gui/GatherPane.java

    r18370 r18593  
    394394     */
    395395    public void modeChanged(int mode) {
    396     collection_filter.setEditable(mode > Configuration.LIBRARIAN_MODE);
    397     workspace_filter.setEditable(mode > Configuration.LIBRARIAN_MODE);
     396    collection_filter.setEditable(mode >= Configuration.LIBRARIAN_MODE);
     397    workspace_filter.setEditable(mode >= Configuration.LIBRARIAN_MODE);
    398398    }
    399399
Note: See TracChangeset for help on using the changeset viewer.