From 2a7c6525c2ab62cb6a09f049c8bf53bc7e6e0039 Mon Sep 17 00:00:00 2001 From: dec05eba Date: Sat, 3 Jul 2021 19:12:05 +0200 Subject: Fix wraparound embedded text, go to last line in pinned events if another tab is selected --- include/Body.hpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'include/Body.hpp') diff --git a/include/Body.hpp b/include/Body.hpp index 841ba5a..da54ee5 100644 --- a/include/Body.hpp +++ b/include/Body.hpp @@ -53,7 +53,8 @@ namespace QuickMedia { class BodyItem { public: BodyItem(std::string _title); - BodyItem& operator=(BodyItem &other); + BodyItem(const BodyItem&) = delete; + BodyItem& operator=(const BodyItem &other); static std::shared_ptr create(std::string title) { return std::make_shared(std::move(title)); } -- cgit v1.2.3