https://bugs.kde.org/show_bug.cgi?id=493581
Akseli Lahtinen <akse...@akselmo.dev> changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |akse...@akselmo.dev --- Comment #1 from Akseli Lahtinen <akse...@akselmo.dev> --- Created attachment 174132 --> https://bugs.kde.org/attachment.cgi?id=174132&action=edit PromptDialog with long subtitle I am unable to reproduce this using newest kirigami + kirigami-gallery This is the prompt dialog code: ```qml Kirigami.PromptDialog { id: textPromptDialog title: "New Folder" subtitle: "Long subtitle aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa" standardButtons: Kirigami.Dialog.NoButton customFooterActions: [ Kirigami.Action { text: qsTr("Create Folder") icon.name: "dialog-ok" onTriggered: { showPassiveNotification("Created"); textPromptDialog.close(); } }, Kirigami.Action { text: qsTr("Cancel") icon.name: "dialog-cancel" onTriggered: { textPromptDialog.close(); } } ] FormCard.FormTextFieldDelegate { label: qsTr("Folder name:") leftPadding: 0 rightPadding: 0 } } ``` -- You are receiving this mail because: You are watching all bug changes.