From a8f7796ebf0a62cb24ca0a5af76703f1c340def9 Mon Sep 17 00:00:00 2001 From: Devin Lin Date: Sun, 18 Jan 2026 20:11:35 -0500 Subject: [PATCH] kcms/time: Fix timezone picker dialog width Fixes https://invent.kde.org/plasma/plasma-mobile/-/issues/495 We need to set a preferred width for the dialog. --- kcms/time/ui/main.qml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/kcms/time/ui/main.qml b/kcms/time/ui/main.qml index 599f7243..3742476d 100644 --- a/kcms/time/ui/main.qml +++ b/kcms/time/ui/main.qml @@ -111,6 +111,7 @@ SimpleKCM { id: timeZonePickerDialog title: i18nc("@title:window", "Pick Timezone") standardButtons: Kirigami.Dialog.Ok | Kirigami.Dialog.Cancel + preferredWidth: Kirigami.Units.gridUnit * 18 property string selectedTimeZoneId @@ -126,8 +127,6 @@ SimpleKCM { id: listView currentIndex: -1 // otherwise the vkbd will constantly open and close while typing headerPositioning: ListView.OverlayHeader - implicitWidth: 18 * Kirigami.Units.gridUnit - implicitHeight: 18 * Kirigami.Units.gridUnit header: Controls.Control { z: 1