Ignore:
Timestamp:
2009-12-30T00:52:37+01:00 (14 years ago)
Author:
stoecker
Message:

don't show nothing to do message on plugin auto update

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/org/openstreetmap/josm/plugins/PluginSelection.java

    r2571 r2707  
    105105        }
    106106        if (toUpdate.isEmpty()) {
    107             JOptionPane.showMessageDialog(
    108                     Main.parent,
    109                     tr("All installed plugins are up to date."),
    110                     tr("Information"),
    111                     JOptionPane.INFORMATION_MESSAGE
    112             );
     107            if(pluginPanel != null) /* don't view this message for auto-update */
     108            {
     109                JOptionPane.showMessageDialog(
     110                        Main.parent,
     111                        tr("All installed plugins are up to date."),
     112                        tr("Information"),
     113                        JOptionPane.INFORMATION_MESSAGE
     114                );
     115            }
    113116            done = true;
    114117        } else {
Note: See TracChangeset for help on using the changeset viewer.