Copy the cached entry data in AssStyle's operator=. Closes #1453.

Originally committed to SVN as r6472.
This commit is contained in:
Thomas Goyne 2012-02-14 00:35:41 +00:00
parent 17b293865b
commit 1c2fb01f0a
1 changed files with 2 additions and 0 deletions

View File

@ -322,6 +322,8 @@ AssStyle& AssStyle::operator=(AssStyle const& rgt) {
memcpy(Margin, rgt.Margin, sizeof(Margin));
SetEntryData(rgt.GetEntryData());
return *this;
}