From 1d11fe05065cff32d65ec7970a90c519d1d76585 Mon Sep 17 00:00:00 2001 From: Ghostkeeper Date: Wed, 2 May 2018 09:31:46 +0200 Subject: [PATCH] Code style: Spaces around binary operators Contributes to issue CURA-5035. --- plugins/Toolbox/resources/qml/ToolboxDetailPage.qml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/plugins/Toolbox/resources/qml/ToolboxDetailPage.qml b/plugins/Toolbox/resources/qml/ToolboxDetailPage.qml index fa1aa8ba23..5a73bcc981 100644 --- a/plugins/Toolbox/resources/qml/ToolboxDetailPage.qml +++ b/plugins/Toolbox/resources/qml/ToolboxDetailPage.qml @@ -124,11 +124,11 @@ Item { if (details.author_email) { - return ""+details.author_name+"" + return "" + details.author_name + "" } else { - return ""+details.author_name+"" + return "" + details.author_name + "" } } font: UM.Theme.getFont("very_small")