From b65e86745577deee10d22f93389e7a307980ec22 Mon Sep 17 00:00:00 2001 From: Thomas Goyne Date: Thu, 7 Jun 2012 02:48:08 +0000 Subject: [PATCH] Enable the Accept Splits button even when it's only the autosplit that would be committed Originally committed to SVN as r6887. --- aegisub/src/audio_karaoke.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/aegisub/src/audio_karaoke.cpp b/aegisub/src/audio_karaoke.cpp index 2d84a350e..a88fb914d 100644 --- a/aegisub/src/audio_karaoke.cpp +++ b/aegisub/src/audio_karaoke.cpp @@ -256,7 +256,7 @@ void AudioKaraoke::OnMouse(wxMouseEvent &event) { void AudioKaraoke::LoadFromLine() { kara->SetLine(active_line, true); SetDisplayText(); - accept_button->Enable(false); + accept_button->Enable(kara->GetText() != active_line->Text); cancel_button->Enable(false); }