Skip to content

Commit

Permalink
TextArea: don't clear history during dialog for animated dialogs
Browse files Browse the repository at this point in the history
  • Loading branch information
bradallred committed Mar 31, 2018
1 parent 211e2a1 commit 4c4e70b
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion gemrb/core/GUI/TextArea.cpp
Expand Up @@ -612,7 +612,9 @@ void TextArea::ClearSelectOptions()
dialogBeginNode = NULL;
selectOptions = NULL;

UpdateScrollview();
if (!core->HasFeature(GF_ANIMATED_DIALOG)) {
UpdateScrollview();
}
}

void TextArea::SetSelectOptions(const std::vector<SelectOption>& opts, bool numbered,
Expand Down

0 comments on commit 4c4e70b

Please sign in to comment.