Repaint the visual tools when the active line changes

Originally committed to SVN as r6282.
This commit is contained in:
Thomas Goyne 2012-01-12 22:49:24 +00:00
parent 695559d403
commit 4ab04b79dd
1 changed files with 1 additions and 0 deletions

View File

@ -127,6 +127,7 @@ void VisualToolBase::OnActiveLineChanged(AssDialogue *new_line) {
if (new_line != active_line) {
active_line = new_line;
OnLineChanged();
parent->Render();
}
}