Ignore:
Timestamp:
2007-07-15T17:09:07+02:00 (18 years ago)
Author:
ulf
Message:

implement a way to set both maxScale and minScale, exchanging former zoom funtionality

File:
1 edited

Legend:

Unmodified
Added
Removed
  • applications/editors/josm/plugins/mappaint/src/mappaint/AreaElemStyle.java

    r1501 r3601  
    66        Color colour;
    77
    8         public AreaElemStyle (Color colour, int minZoom)
     8        public AreaElemStyle (Color colour, int maxScale, int minScale)
    99        {
    1010                this.colour = colour;
    11                 this.minZoom = minZoom;
     11                this.maxScale = maxScale;
     12                this.minScale = minScale;
    1213        }
    1314
Note: See TracChangeset for help on using the changeset viewer.