Ignore:
Timestamp:
2009-12-19T18:56:45+01:00 (14 years ago)
Author:
bastiK
Message:

geoimage: reworked image correlation dialog. Might still have some quirks here and there. New: displays and updates the number of matched images in the status bar while you type.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/org/openstreetmap/josm/gui/ExtendedDialog.java

    r2627 r2662  
    192192    }
    193193
    194     protected void setupDialog() {
     194    private boolean setupDone = false;
     195   
     196    /**
     197     * This is called by showDialog().
     198     * Only invoke from outside if you need to modify the contentPane
     199     */
     200    public void setupDialog() {
     201        if (setupDone)
     202            return;
     203        setupDone = true;
     204
    195205        setupEscListener();
    196206
Note: See TracChangeset for help on using the changeset viewer.