Changeset 1367 in josm


Ignore:
Timestamp:
Feb 7, 2009 6:34:18 PM (4 years ago)
Author:
ulfl
Message:

raise the defaults to not show stuff. Otherwise stuff will disappear if you zoom out enough

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/org/openstreetmap/josm/data/osm/visitor/MapPaintVisitor.java

    r1355 r1367  
    12001200 
    12011201        useStyleCache = Main.pref.getBoolean("mappaint.cache",true); 
    1202         fillAreas = Main.pref.getInteger("mappaint.fillareas", 100000); 
     1202        fillAreas = Main.pref.getInteger("mappaint.fillareas", 10000000); 
    12031203        fillAlpha = Math.min(255, Math.max(0, Integer.valueOf(Main.pref.getInteger("mappaint.fillalpha", 50)))); 
    1204         showNames = Main.pref.getInteger("mappaint.shownames", 100000); 
    1205         showIcons = Main.pref.getInteger("mappaint.showicons", 100000); 
    1206         useStrokes = Main.pref.getInteger("mappaint.strokes", 100000); 
     1204        showNames = Main.pref.getInteger("mappaint.shownames", 10000000); 
     1205        showIcons = Main.pref.getInteger("mappaint.showicons", 10000000); 
     1206        useStrokes = Main.pref.getInteger("mappaint.strokes", 10000000); 
    12071207        LatLon ll1 = nc.getLatLon(0,0); 
    12081208        LatLon ll2 = nc.getLatLon(100,0); 
Note: See TracChangeset for help on using the changeset viewer.