From 3bdbcd7b5e99fd980820457bf594724b90ec9378 Mon Sep 17 00:00:00 2001 From: Karl Blomster Date: Thu, 7 May 2009 17:52:29 +0000 Subject: [PATCH] Fix a minor bug that caused the add leadin/leadout buttons to not update the time edit boxes. Patch by Harukalover, fixes #836. Originally committed to SVN as r2906. --- aegisub/src/audio_display.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/aegisub/src/audio_display.cpp b/aegisub/src/audio_display.cpp index eb022908a..9aca2a280 100644 --- a/aegisub/src/audio_display.cpp +++ b/aegisub/src/audio_display.cpp @@ -1318,6 +1318,7 @@ void AudioDisplay::AddLead(bool in,bool out) { } // Set changes + UpdateTimeEditCtrls(); NeedCommit = true; if (Options.AsBool(_T("Audio Autocommit"))) CommitChanges(); Update();