| 4119 | } |
| 4120 | |
| 4121 | void CityView::zoomLastEvent() |
| 4122 | { |
| 4123 | if (!state->messages.empty()) |
| 4124 | { |
| 4125 | auto message = state->messages.back(); |
| 4126 | if (message.location != EventMessage::NO_LOCATION) |
| 4127 | { |
| 4128 | setScreenCenterTile(message.location); |
| 4129 | } |
| 4130 | } |
| 4131 | } |
| 4132 | void CityView::setSelectionState(CitySelectionState selectionState) |
| 4133 | { |
| 4134 | this->selectionState = selectionState; |
no test coverage detected