Ignore:
Timestamp:
2008-11-25T00:01:14+13:00 (15 years ago)
Author:
davidb
Message:

FLI based version now uses blue fli-*.gif images rather than the default green ones

File:
1 edited

Legend:

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

    r16335 r17916  
    8585    JPanel content_pane = (JPanel) getContentPane();
    8686    JPanel text_pane = new JPanel();
    87     JLabel icon_label = new JLabel(JarTools.getImage("gatherer_medium.gif"));
     87
     88    String gmedium_image = "gatherer_medium.gif";
     89    if (Configuration.fedora_info.isActive()) {
     90        gmedium_image = "fli-" + gmedium_image;
     91    }
     92
     93    JLabel icon_label = new JLabel(JarTools.getImage(gmedium_image));
    8894
    8995    JTextArea text_area = new JTextArea();
Note: See TracChangeset for help on using the changeset viewer.