QmlNodeEditor
NodeDeleteConfirmationDialog.qml
Go to the documentation of this file.
1 import QtQuick 2.15
2 import QtQuick.Controls 2.15
3 
4 Dialog {
5  parent: Overlay.overlay
6  x: Math.round((parent.width - width) / 2)
7  y: Math.round((parent.height - height) / 2)
8  modal: true
9  focus: true
10  title: "Do you really want to remove node " + nodeModel.nodeId + "?"
11  standardButtons: Dialog.Ok | Dialog.Cancel
12 }