- Timestamp:
- 2017-06-01T11:28:44+02:00 (8 years ago)
- Location:
- trunk/src/org/openstreetmap/josm
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/org/openstreetmap/josm/data/projection/proj/PolarStereographic.java
r12013 r12292 103 103 throw new ProjectionConfigurationException( 104 104 tr("Polar Stereographic: Parameter ''{0}'' must be 90 or -90.", "lat_0")); 105 // Latitude of true scale, in radians ;105 // Latitude of true scale, in radians 106 106 double latitudeTrueScale; 107 107 if (params.lat_ts == null) { … … 112 112 southPole = latitudeTrueScale < 0; 113 113 114 // Computes coefficients .114 // Computes coefficients 115 115 double latitudeTrueScaleAbs = Math.abs(latitudeTrueScale); 116 116 if (Math.abs(latitudeTrueScaleAbs - Math.PI/2) >= EPSILON) { -
trunk/src/org/openstreetmap/josm/gui/preferences/ToolbarPreferences.java
r12135 r12292 1168 1168 b.setMinimumSize(s); 1169 1169 b.setMaximumSize(s); 1170 //b.setSize(s);1171 1170 } else if (s.height < s.width) { 1172 1171 s.height = s.width;
Note:
See TracChangeset
for help on using the changeset viewer.