Skip to content

Commit

Permalink
Add QfDialog - Fix review.
Browse files Browse the repository at this point in the history
  • Loading branch information
mohsenD98 authored and nirvn committed Oct 19, 2024
1 parent 01ebeb2 commit fabb997
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
6 changes: 5 additions & 1 deletion src/qml/FeatureListForm.qml
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down
1 change: 0 additions & 1 deletion src/qml/PluginManagerSettings.qml
Original file line number Diff line number Diff line change
Expand Up @@ -309,7 +309,6 @@ Popup {
id: uninstallConfirmation
title: "Uninstall Plugin"
parent: mainWindow.contentItem
modal: false
y: (mainWindow.height - height - 80) / 2

property string pluginName: ""
Expand Down

0 comments on commit fabb997

Please sign in to comment.