| 1092 | } |
| 1093 | |
| 1094 | void MapWidget::mouseDoubleClickEvent(QMouseEvent* event) |
| 1095 | { |
| 1096 | if (touch_cursor && tool && tool->usesTouchCursor()) |
| 1097 | { |
| 1098 | if (!touch_cursor->mouseDoubleClickEvent(event)) |
| 1099 | return; |
| 1100 | } |
| 1101 | _mouseDoubleClickEvent(event); |
| 1102 | } |
| 1103 | |
| 1104 | void MapWidget::_mouseDoubleClickEvent(QMouseEvent* event) |
| 1105 | { |
no test coverage detected