| 219 | } |
| 220 | |
| 221 | void TraditionalView::toggleShowLabel() |
| 222 | { |
| 223 | auto nid = node(); |
| 224 | if (nid == NodeID::NoNode) |
| 225 | return; |
| 226 | |
| 227 | auto val = !vis_flags_->isLabelShown(nid); |
| 228 | setLabelShown(nid, val); |
| 229 | emit needsRedrawing(); |
| 230 | layout_computer_->dirtyUpLater(nid); |
| 231 | } |
| 232 | |
| 233 | void TraditionalView::showLabelsDown() |
| 234 | { |
nothing calls this directly
no test coverage detected