Browse Source

Fix fonts of plug-in tiles

Contributes to issue CURA-6025.
Ghostkeeper 6 years ago
parent
commit
df0351acd4

+ 1 - 1
plugins/Toolbox/resources/qml/SmallRatingWidget.qml

@@ -30,7 +30,7 @@ Row
         width: contentWidth
         anchors.verticalCenter: starIcon.verticalCenter
         color: starIcon.color
-        font: UM.Theme.getFont("small")
+        font: UM.Theme.getFont("default")
         renderType: Text.NativeRendering
     }
 }

+ 1 - 1
plugins/Toolbox/resources/qml/ToolboxDownloadsGridTile.qml

@@ -112,7 +112,7 @@ Item
             elide: Text.ElideRight
             width: parent.width
             wrapMode: Text.WordWrap
-            color: UM.Theme.getColor("text_medium")
+            color: UM.Theme.getColor("text")
             font: UM.Theme.getFont("default")
             anchors.top: name.bottom
             anchors.bottom: rating.top

+ 2 - 1
resources/qml/PrintSetupTooltip.qml

@@ -41,7 +41,8 @@ UM.PointingRectangle {
         base.opacity = 0;
     }
 
-    Label {
+    Label
+    {
         id: label;
         anchors {
             top: parent.top;

+ 1 - 1
resources/qml/ToolTip.qml

@@ -25,7 +25,7 @@ ToolTip
     text: ""
     delay: 500
     font: UM.Theme.getFont("default")
-    
+
     // If the text is not set, just set the height to 0 to prevent it from showing
     height: text != "" ? label.contentHeight + 2 * UM.Theme.getSize("thin_margin").width: 0