Use default font for configuration override

Contributes to CL-1124
This commit is contained in:
Ian Paschal 2018-11-05 17:19:22 +01:00
parent 4f10b7809a
commit c84aa9cf21

View File

@ -296,6 +296,7 @@ Item {
verticalCenter: parent.verticalCenter; verticalCenter: parent.verticalCenter;
} }
color: UM.Theme.getColor("text"); color: UM.Theme.getColor("text");
font: UM.Theme.getFont("default");
text: catalog.i18nc("@label", "Configuration change"); text: catalog.i18nc("@label", "Configuration change");
} }
@ -355,7 +356,7 @@ Item {
anchors.fill: parent; anchors.fill: parent;
elide: Text.ElideRight; elide: Text.ElideRight;
color: UM.Theme.getColor("text"); color: UM.Theme.getColor("text");
font: UM.Theme.getFont("medium"); font: UM.Theme.getFont("default");
text: { text: {
if (!printJob || printJob.configurationChanges.length === 0) { if (!printJob || printJob.configurationChanges.length === 0) {
return ""; return "";