Coalesce typing in the Actor box (but not selections from the dropdown)

Originally committed to SVN as r6539.
This commit is contained in:
Thomas Goyne 2012-03-07 22:40:45 +00:00
parent 94b3764a91
commit b64e1f925c
1 changed files with 3 additions and 2 deletions

View File

@ -516,8 +516,9 @@ void SubsEditBox::OnStyleChange(wxCommandEvent &) {
SetSelectedRows(&AssDialogue::Style, StyleBox->GetValue(), _("style change"), AssFile::COMMIT_DIAG_META);
}
void SubsEditBox::OnActorChange(wxCommandEvent &) {
SetSelectedRows(&AssDialogue::Actor, ActorBox->GetValue(), _("actor change"), AssFile::COMMIT_DIAG_META);
void SubsEditBox::OnActorChange(wxCommandEvent &evt) {
bool amend = evt.GetEventType() == wxEVT_COMMAND_TEXT_UPDATED;
SetSelectedRows(&AssDialogue::Actor, ActorBox->GetValue(), _("actor change"), AssFile::COMMIT_DIAG_META, amend);
PopulateActorList();
}