From c2219fdf1f741a33f415124459de69054313de57 Mon Sep 17 00:00:00 2001 From: dec05eba Date: Mon, 7 Nov 2022 14:36:13 +0100 Subject: Unformat text for clipboard --- src/plugins/Page.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'src/plugins/Page.cpp') diff --git a/src/plugins/Page.cpp b/src/plugins/Page.cpp index f5867e3..991f651 100644 --- a/src/plugins/Page.cpp +++ b/src/plugins/Page.cpp @@ -49,9 +49,9 @@ namespace QuickMedia { } void Page::copy_to_clipboard(const BodyItem *body_item) { - std::string title = body_item->get_title(); - std::string author = body_item->get_author(); - std::string description = body_item->get_description(); + std::string title = Text::to_printable_string(body_item->get_title()); + std::string author = Text::to_printable_string(body_item->get_author()); + std::string description = Text::to_printable_string(body_item->get_description()); std::string clipboard = std::move(title); -- cgit v1.2.3