Ignore:
Timestamp:
2017-08-28T16:42:35+02:00 (7 years ago)
Author:
bastiK
Message:

see #15167 - moved the info label in non expert mode (patch by bafonins)

File:
1 edited

Legend:

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

    r12655 r12684  
    7171
    7272    @Override
    73     public void addGui(DownloadDialog dialog) {
    74         dialog.addDownloadSource(this);
    75     }
    76 
    77     @Override
    7873    public boolean onlyExpert() {
    7974        return true;
     
    8984        private OverpassQueryList overpassQueryList;
    9085
     86        private static final String SIMPLE_NAME = "overpassdownloadpanel";
    9187        private static final BooleanProperty OVERPASS_QUERY_LIST_OPENED =
    9288                new BooleanProperty("download.overpass.query-list.opened", false);
     
    180176            add(innerPanel, BorderLayout.CENTER);
    181177            add(listPanel, BorderLayout.EAST);
     178
     179            setMinimumSize(new Dimension(450, 240));
    182180        }
    183181
     
    275273        }
    276274
     275        @Override
     276        public String getSimpleName() {
     277            return SIMPLE_NAME;
     278        }
     279
    277280        /**
    278281         * Action that delegates snippet creation to {@link OverpassQueryList#createNewItem()}.
Note: See TracChangeset for help on using the changeset viewer.