welcome app: add tip for broken color changing

This commit is contained in:
end-4
2025-09-01 10:51:10 +02:00
parent 7121a4ae30
commit 75fcb9a990
3 changed files with 45 additions and 33 deletions
@@ -600,39 +600,13 @@ ContentPage {
}
}
Rectangle {
NoticeBox {
id: reloadNotice
visible: false
Layout.topMargin: 8
radius: Appearance.rounding.normal
color: Appearance.colors.colPrimaryContainer
Layout.fillWidth: true
implicitWidth: languageRowLayout.implicitWidth + languageRowLayout.anchors.margins * 2
implicitHeight: languageRowLayout.implicitHeight + languageRowLayout.anchors.margins * 2
RowLayout {
id: languageRowLayout
anchors.fill: parent
anchors.margins: 8
spacing: 8
MaterialSymbol {
Layout.fillWidth: false
Layout.alignment: Qt.AlignVCenter
text: "info"
iconSize: Appearance.font.pixelSize.larger
color: Appearance.colors.colOnPrimaryContainer
}
StyledText {
id: noticeText
Layout.fillWidth: true
Layout.alignment: Qt.AlignVCenter
text: Translation.tr("Language setting saved. Please restart Quickshell (Ctrl+Super+R) to apply the new language.")
color: Appearance.colors.colOnPrimaryContainer
wrapMode: Text.WordWrap
}
}
text: Translation.tr("Language setting saved. Please restart Quickshell (Ctrl+Super+R) to apply the new language.")
}
}
}