forked from mia/Aegisub
Fix a minor graphical glitch in the time edit boxes introduced in r2859. Patch by Harukalover. updates #794
Originally committed to SVN as r2860.
This commit is contained in:
parent
fe05adb64e
commit
2ba20b12c8
1 changed files with 4 additions and 0 deletions
|
@ -912,6 +912,10 @@ void SubsEditBox::Commit(bool stay) {
|
|||
|
||||
// Update file
|
||||
if (!updated && textNeedsCommit) {
|
||||
if (StartTime->HasBeenModified() || EndTime->HasBeenModified()) {
|
||||
StartTime->Update();
|
||||
EndTime->Update();
|
||||
}
|
||||
grid->ass->FlagAsModified(_("editing"));
|
||||
grid->CommitChanges();
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue