summaryrefslogtreecommitdiff
path: root/Userland/Libraries/LibGUI/Model.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'Userland/Libraries/LibGUI/Model.cpp')
-rw-r--r--Userland/Libraries/LibGUI/Model.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/Userland/Libraries/LibGUI/Model.cpp b/Userland/Libraries/LibGUI/Model.cpp
index 7ffa5c1fc4..b15f452cee 100644
--- a/Userland/Libraries/LibGUI/Model.cpp
+++ b/Userland/Libraries/LibGUI/Model.cpp
@@ -108,7 +108,7 @@ RefPtr<Core::MimeData> Model::mime_data(ModelSelection const& selection) const
selection.for_each_index([&](auto& index) {
auto text_data = index.data();
if (!first)
- text_builder.append(", ");
+ text_builder.append(", "sv);
text_builder.append(text_data.to_string());
if (!first)