filedialog: fix null error

This commit is contained in:
2 * r + 2 * t 2025-08-02 23:07:21 +10:00
parent 6fe2903d75
commit 1ee4d188c7

View file

@ -83,7 +83,7 @@ Item {
anchors.rightMargin: Appearance.padding.larger - Appearance.padding.small
anchors.bottomMargin: Appearance.padding.normal - Appearance.padding.small
text: qsTr(`"%1" selected`).arg(root.currentItem.fileName)
text: qsTr(`"%1" selected`).arg(root.currentItem?.fileName)
}
}