| 351 | } |
| 352 | |
| 353 | void MacroSegmentList::HideLastDropLine() |
| 354 | { |
| 355 | if (_dropLineIdx >= 0 && _dropLineIdx < _contentLayout->count()) { |
| 356 | auto widget = WidgetAt(_dropLineIdx); |
| 357 | if (widget) { |
| 358 | widget->ShowDropLine( |
| 359 | MacroSegmentEdit::DropLineState::NONE); |
| 360 | } |
| 361 | } |
| 362 | _dropLineIdx = -1; |
| 363 | } |
| 364 | |
| 365 | void MacroSegmentList::ClearWidgetCache() |
| 366 | { |
nothing calls this directly
no test coverage detected