Changeset 9649


Ignore:
Timestamp:
2005-04-12T13:34:52+12:00 (19 years ago)
Author:
mdewsnip
Message:

Renamed tab pane images to match the name of the pane.

Location:
trunk/gli
Files:
5 added
5 deleted
1 edited

Legend:

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

    r9355 r9649  
    333333        download_pane = new DownloadPane();
    334334        // "GUI.Download_Tooltip" is used automatically
    335         tab_pane.addTab("GUI.Download", Utility.getImage("mirroring.gif"), download_pane);
     335        tab_pane.addTab("GUI.Download", Utility.getImage("download.gif"), download_pane);
    336336        tab_pane.setEnabledAt(tab_pane.indexOfComponent(download_pane), Configuration.get("workflow.download", false));
    337337        }
     
    341341        if(Configuration.get("workflow.gather", true)) {
    342342        // "GUI.Gather_Tooltip" is used automatically
    343         tab_pane.addTab("GUI.Gather", Utility.getImage("collection.gif"), gather_pane);
     343        tab_pane.addTab("GUI.Gather", Utility.getImage("gather.gif"), gather_pane);
    344344        tab_pane.setEnabledAt(tab_pane.indexOfComponent(gather_pane), Configuration.get("workflow.gather", false));
    345345        }
     
    349349        if(Configuration.get("workflow.enrich", true)) {
    350350        // "GUI.Enrich_Tooltip" is used automatically
    351         tab_pane.addTab("GUI.Enrich", Utility.getImage("metaedit.gif"), enrich_pane);
     351        tab_pane.addTab("GUI.Enrich", Utility.getImage("enrich.gif"), enrich_pane);
    352352        tab_pane.setEnabledAt(tab_pane.indexOfComponent(enrich_pane), false);
    353353        }
     
    357357        if(Configuration.get("workflow.design", true)) {
    358358        // "GUI.Design_Tooltip" is used automatically
    359         tab_pane.addTab("GUI.Design", Utility.getImage("build.gif"), design_pane);
     359        tab_pane.addTab("GUI.Design", Utility.getImage("design.gif"), design_pane);
    360360        tab_pane.setEnabledAt(tab_pane.indexOfComponent(design_pane), false);
    361361        }
     
    365365        if(Configuration.get("workflow.create", true)) {
    366366        // "GUI.Create_Tooltip" is used automatically
    367         tab_pane.addTab("GUI.Create", Utility.getImage("build session.gif"), create_pane);
     367        tab_pane.addTab("GUI.Create", Utility.getImage("create.gif"), create_pane);
    368368        tab_pane.setEnabledAt(tab_pane.indexOfComponent(create_pane), false);
    369369        }
Note: See TracChangeset for help on using the changeset viewer.