=== modified file 'dhis-2/dhis-api/src/main/java/org/hisp/dhis/mapping/MapView.java' --- dhis-2/dhis-api/src/main/java/org/hisp/dhis/mapping/MapView.java 2012-10-31 10:43:37 +0000 +++ dhis-2/dhis-api/src/main/java/org/hisp/dhis/mapping/MapView.java 2012-11-01 05:08:47 +0000 @@ -465,6 +465,7 @@ { MapView mapView = (MapView) other; + layer = mapView.getLayer() == null ? layer : mapView.getLayer(); valueType = mapView.getValueType() == null ? valueType : mapView.getValueType(); indicatorGroup = mapView.getIndicatorGroup() == null ? indicatorGroup : mapView.getIndicatorGroup(); indicator = mapView.getIndicator() == null ? indicator : mapView.getIndicator(); @@ -481,6 +482,8 @@ legendSet = mapView.getLegendSet() == null ? legendSet : mapView.getLegendSet(); radiusLow = mapView.getRadiusLow() == null ? radiusLow : mapView.getRadiusLow(); radiusHigh = mapView.getRadiusHigh() == null ? radiusHigh : mapView.getRadiusHigh(); + opacity = mapView.getOpacity() == null ? opacity : mapView.getOpacity(); + organisationUnitGroupSet = mapView.getOrganisationUnitGroupSet() == null ? organisationUnitGroupSet : mapView.getOrganisationUnitGroupSet(); } } }