From 0e646a97f2852bb94e8ec11ad7c7de7b62ac5ada Mon Sep 17 00:00:00 2001 From: 10r3n20 Date: Tue, 16 Nov 2021 11:40:24 +0100 Subject: [PATCH] made font bold in tabs to be more aligned in weight with the gear icon --- plugins/Marketplace/resources/qml/PackageTypeTab.qml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/plugins/Marketplace/resources/qml/PackageTypeTab.qml b/plugins/Marketplace/resources/qml/PackageTypeTab.qml index 4d82333b02..0520b74fb6 100644 --- a/plugins/Marketplace/resources/qml/PackageTypeTab.qml +++ b/plugins/Marketplace/resources/qml/PackageTypeTab.qml @@ -13,7 +13,6 @@ TabButton property color inactiveBackgroundColor : hovered ? UM.Theme.getColor("action_button_hovered") : UM.Theme.getColor("detail_background") property color activeBackgroundColor : UM.Theme.getColor("main_background") - background: Rectangle { anchors.fill: parent @@ -25,7 +24,7 @@ TabButton contentItem: Label { text: parent.text - font: UM.Theme.getFont("medium") + font: UM.Theme.getFont("medium_bold") color: UM.Theme.getColor("text") width: contentWidth anchors.centerIn: parent