diff options
-rw-r--r-- | src/BodyItem.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/BodyItem.cpp b/src/BodyItem.cpp index 431616d..192a7bf 100644 --- a/src/BodyItem.cpp +++ b/src/BodyItem.cpp @@ -60,8 +60,8 @@ namespace QuickMedia { reactions.clear(); for(auto &reaction : other.reactions) { Reaction reaction_copy; - reaction_copy.text = std::make_unique<Text>(*reaction.text); reaction_copy.userdata = reaction.userdata; + reaction_copy.text_color = reaction.text_color; reactions.push_back(std::move(reaction_copy)); } title = other.title; |