| 123 | } |
| 124 | |
| 125 | AssDialogue* VisualToolBase::GetActiveDialogueLine() { |
| 126 | AssDialogue *diag = c->selectionController->GetActiveLine(); |
| 127 | if (IsDisplayed(diag)) |
| 128 | return diag; |
| 129 | return nullptr; |
| 130 | } |
| 131 | |
| 132 | void VisualToolBase::SetDisplayArea(int x, int y, int w, int h) { |
| 133 | if (x == video_pos.X() && y == video_pos.Y() && w == video_res.X() && h == video_res.Y()) return; |
nothing calls this directly
no test coverage detected