Ignore:
Timestamp:
2009-07-08T21:50:32+02:00 (15 years ago)
Author:
Gubaer
Message:

new: replaced global conflict list by conflict list per layer, similar to datasets

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/org/openstreetmap/josm/actions/mapmode/ExtrudeAction.java

    r1677 r1750  
    126126     */
    127127    @Override public void mouseDragged(MouseEvent e) {
    128         if(!Main.map.mapView.isVisibleDrawableLayer())
     128        if(!Main.map.mapView.isActiveLayerVisible())
    129129            return;
    130130        if (mode == Mode.select) return;
     
    195195     */
    196196    @Override public void mousePressed(MouseEvent e) {
    197         if(!Main.map.mapView.isVisibleDrawableLayer())
     197        if(!Main.map.mapView.isActiveLayerVisible())
    198198            return;
    199199        if (!(Boolean)this.getValue("active")) return;
     
    227227     */
    228228    @Override public void mouseReleased(MouseEvent e) {
    229         if(!Main.map.mapView.isVisibleDrawableLayer())
     229        if(!Main.map.mapView.isActiveLayerVisible())
    230230            return;
    231231        restoreCursor();
Note: See TracChangeset for help on using the changeset viewer.