Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/Ultimaker/Cura.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGhostkeeper <rubend@tutanota.com>2019-02-04 17:23:57 +0300
committerGhostkeeper <rubend@tutanota.com>2019-02-04 17:23:57 +0300
commit61475a79cf7789f9c4ee1675765707856d2e96bc (patch)
tree76dfda12226f43dc95d245aa35baf08e49e68acd /resources
parent7d871e5a183d2967fb6e3a3d05cd5cf1425cc230 (diff)
Fix font size of buildplate warning
This was most likely copied from an old release but the font in question was deleted.
Diffstat (limited to 'resources')
-rw-r--r--resources/qml/Menus/ConfigurationMenu/CustomConfiguration.qml2
1 files changed, 1 insertions, 1 deletions
diff --git a/resources/qml/Menus/ConfigurationMenu/CustomConfiguration.qml b/resources/qml/Menus/ConfigurationMenu/CustomConfiguration.qml
index f33f638119..606dc142be 100644
--- a/resources/qml/Menus/ConfigurationMenu/CustomConfiguration.qml
+++ b/resources/qml/Menus/ConfigurationMenu/CustomConfiguration.qml
@@ -332,7 +332,7 @@ Item
verticalAlignment: Text.AlignVCenter
width: selectors.controlWidth - warningImage.width - UM.Theme.getSize("default_margin").width
text: catalog.i18nc("@label", "Use glue for better adhesion with this material combination.")
- font: UM.Theme.getFont("very_small")
+ font: UM.Theme.getFont("default")
color: UM.Theme.getColor("text")
visible: CuraSDKVersion == "dev" ? false : warnings.buildplateCompatibilityError || warnings.buildplateCompatibilityWarning
wrapMode: Text.WordWrap