| 333 | } |
| 334 | |
| 335 | void MapDetailHandler::decreaseMapDetailText() |
| 336 | { |
| 337 | int curLevel = getDetailLevelText(); |
| 338 | if(curLevel > MapLayerSettings::MAP_MIN_DETAIL_LEVEL_TEXT) |
| 339 | { |
| 340 | sliderActionDetailLevelText->setSliderValue(curLevel - 1); |
| 341 | updateActions(); |
| 342 | emit updateDetailLevel(getDetailLevel(), getDetailLevelText()); |
| 343 | } |
| 344 | } |
| 345 | |
| 346 | void MapDetailHandler::increaseMapDetail() |
| 347 | { |
no test coverage detected