| 355 | } |
| 356 | |
| 357 | void MapDetailHandler::decreaseMapDetail() |
| 358 | { |
| 359 | int curLevel = getDetailLevel(); |
| 360 | if(curLevel > MapLayerSettings::MAP_MIN_DETAIL_LEVEL) |
| 361 | { |
| 362 | sliderActionDetailLevel->setSliderValue(curLevel - 1); |
| 363 | updateActions(); |
| 364 | emit updateDetailLevel(getDetailLevel(), getDetailLevelText()); |
| 365 | } |
| 366 | } |
no test coverage detected