diff --git a/src/declarativeimports/plasmaextracomponents/qml/Heading.qml b/src/declarativeimports/plasmaextracomponents/qml/Heading.qml --- a/src/declarativeimports/plasmaextracomponents/qml/Heading.qml +++ b/src/declarativeimports/plasmaextracomponents/qml/Heading.qml @@ -62,8 +62,6 @@ lineHeight: 1.2 font.pointSize: headerPointSize(level) - font.weight: level <= 4 ? Font.Light : Font.Normal - font.styleName: level <= 4 ? "Light" : "Regular" wrapMode: Text.WordWrap function headerPointSize(l) { diff --git a/src/declarativeimports/plasmaextracomponents/qml/Title.qml b/src/declarativeimports/plasmaextracomponents/qml/Title.qml --- a/src/declarativeimports/plasmaextracomponents/qml/Title.qml +++ b/src/declarativeimports/plasmaextracomponents/qml/Title.qml @@ -43,7 +43,5 @@ */ Label { id: root - - font.weight: Font.Light font.pointSize: theme.defaultFont.pointSize*2 }