Browse Source

Code style: Spaces around binary operators

Contributes to issue CURA-5035.
Ghostkeeper 6 years ago
parent
commit
1d11fe0506
1 changed files with 2 additions and 2 deletions
  1. 2 2
      plugins/Toolbox/resources/qml/ToolboxDetailPage.qml

+ 2 - 2
plugins/Toolbox/resources/qml/ToolboxDetailPage.qml

@@ -124,11 +124,11 @@ Item
                 {
                     if (details.author_email)
                     {
-                        return "<a href=\"mailto:"+details.author_email+"?Subject=Cura: "+details.name+"\">"+details.author_name+"</a>"
+                        return "<a href=\"mailto:" + details.author_email+"?Subject=Cura: " + details.name + "\">" + details.author_name + "</a>"
                     }
                     else
                     {
-                        return "<a href=\""+details.website+"\">"+details.author_name+"</a>"
+                        return "<a href=\"" + details.website + "\">" + details.author_name + "</a>"
                     }
                 }
                 font: UM.Theme.getFont("very_small")