Issue #481 - Fixed update of edit box after using resampling.

Originally committed to SVN as r1455.
This commit is contained in:
Rodrigo Braz Monteiro 2007-07-29 07:49:56 +00:00
parent e568425e97
commit 1aec7be708
1 changed files with 3 additions and 1 deletions

View File

@ -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);
}