Issue #481 - Fixed update of edit box after using resampling.
Originally committed to SVN as r1455.
This commit is contained in:
parent
e568425e97
commit
1aec7be708
1 changed files with 3 additions and 1 deletions
|
@ -45,6 +45,7 @@
|
|||
#include "validators.h"
|
||||
#include "video_context.h"
|
||||
#include "utils.h"
|
||||
#include "subs_edit_box.h"
|
||||
|
||||
|
||||
///////////////
|
||||
|
@ -238,7 +239,8 @@ void DialogResample::OnResample (wxCommandEvent &event) {
|
|||
|
||||
// Flag as modified
|
||||
subs->FlagAsModified(_("resolution resampling"));
|
||||
grid->CommitChanges();;
|
||||
grid->CommitChanges();
|
||||
grid->editBox->Update();
|
||||
EndModal(0);
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue