Enable the Accept Splits button even when it's only the autosplit that would be committed

Originally committed to SVN as r6887.
This commit is contained in:
Thomas Goyne 2012-06-07 02:48:08 +00:00
parent 18041eabc7
commit b65e867455
1 changed files with 1 additions and 1 deletions

View File

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