diff --git a/lookandfeel/contents/components/Clock.qml b/lookandfeel/contents/components/Clock.qml --- a/lookandfeel/contents/components/Clock.qml +++ b/lookandfeel/contents/components/Clock.qml @@ -19,22 +19,23 @@ import QtQuick 2.8 import QtQuick.Layouts 1.1 - +import QtQuick.Controls 2.5 import org.kde.plasma.core 2.0 -import org.kde.plasma.components 2.0 ColumnLayout { readonly property bool softwareRendering: GraphicsInfo.api === GraphicsInfo.Software Label { text: Qt.formatTime(timeSource.data["Local"]["DateTime"]) + color: ColorScope.textColor style: softwareRendering ? Text.Outline : Text.Normal styleColor: softwareRendering ? ColorScope.backgroundColor : "transparent" //no outline, doesn't matter font.pointSize: 48 Layout.alignment: Qt.AlignHCenter } Label { text: Qt.formatDate(timeSource.data["Local"]["DateTime"], Qt.DefaultLocaleLongDate) + color: ColorScope.textColor style: softwareRendering ? Text.Outline : Text.Normal styleColor: softwareRendering ? ColorScope.backgroundColor : "transparent" //no outline, doesn't matter font.pointSize: 24