From fabb997f31285c9c7083dc00f47c3b566cfd78dd Mon Sep 17 00:00:00 2001 From: Mohsen Date: Tue, 15 Oct 2024 16:10:36 +0330 Subject: [PATCH] Add QfDialog - Fix review. --- src/qml/FeatureListForm.qml | 6 +++++- src/qml/PluginManagerSettings.qml | 1 - 2 files changed, 5 insertions(+), 2 deletions(-) diff --git a/src/qml/FeatureListForm.qml b/src/qml/FeatureListForm.qml index 6ec16f0c90..813bed4464 100644 --- a/src/qml/FeatureListForm.qml +++ b/src/qml/FeatureListForm.qml @@ -905,7 +905,11 @@ Rectangle { property bool isDeleted: false title: qsTr("Delete feature(s)") - text: qsTr("Should the %n feature(s) selected really be deleted?", "0", deleteDialog.selectedCount) + Label { + width: parent.width + wrapMode: Text.WordWrap + text: qsTr("Should the %n feature(s) selected really be deleted?", "0", deleteDialog.selectedCount) + } onAccepted: { if (isDeleted) { return; diff --git a/src/qml/PluginManagerSettings.qml b/src/qml/PluginManagerSettings.qml index 1d6091cfb6..5488314e23 100644 --- a/src/qml/PluginManagerSettings.qml +++ b/src/qml/PluginManagerSettings.qml @@ -309,7 +309,6 @@ Popup { id: uninstallConfirmation title: "Uninstall Plugin" parent: mainWindow.contentItem - modal: false y: (mainWindow.height - height - 80) / 2 property string pluginName: ""