From 17af911fa6b6876ee6afc205d1d55c76f371fae5 Mon Sep 17 00:00:00 2001 From: harukalover Date: Fri, 19 Jun 2009 22:18:30 +0000 Subject: [PATCH] Fixed an issue with Shift to Current Frame not updating the time edit boxes in the subs edit box, resulting in commit using the previous no longer valid times. Fixes #897 Originally committed to SVN as r3081. --- aegisub/src/frame_main_events.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/aegisub/src/frame_main_events.cpp b/aegisub/src/frame_main_events.cpp index 2279a5d6c..755bbf9d5 100644 --- a/aegisub/src/frame_main_events.cpp +++ b/aegisub/src/frame_main_events.cpp @@ -1262,6 +1262,7 @@ void FrameMain::OnShiftToFrame (wxCommandEvent &event) { // Commit SubsBox->ass->FlagAsModified(_("shift to frame")); SubsBox->CommitChanges(); + SubsBox->editBox->Update(true,false); } }