From 32a9b0486465b1ae1a0bdc20d00c3b57cf036f56 Mon Sep 17 00:00:00 2001 From: Marco Allegretti Date: Wed, 8 Apr 2026 20:12:27 +0200 Subject: [PATCH] Show date in status bar in convergence mode Force the date label visible in convergence mode, matching the existing behavior of the dateInStatusBar setting. --- components/mobileshell/qml/statusbar/ClockText.qml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/components/mobileshell/qml/statusbar/ClockText.qml b/components/mobileshell/qml/statusbar/ClockText.qml index 45ca3dcd..a81b44e7 100644 --- a/components/mobileshell/qml/statusbar/ClockText.qml +++ b/components/mobileshell/qml/statusbar/ClockText.qml @@ -34,7 +34,7 @@ RowLayout { PlasmaComponents.Label { id: date - visible: ShellSettings.Settings.dateInStatusBar && !root.showSecondRow + visible: (ShellSettings.Settings.dateInStatusBar || ShellSettings.Settings.convergenceModeEnabled) && !root.showSecondRow text: Qt.formatDate(clockSource.dateTime, "ddd. MMMM d") color: Kirigami.Theme.textColor