removed the use of QFileDialog

This commit is contained in:
vladimir.kuznetsov 2023-08-30 15:10:44 +05:00
parent 8f6aa950cd
commit e8862a3811
22 changed files with 224 additions and 164 deletions

View file

@ -146,4 +146,14 @@ Item {
color: "#EB5757"
}
}
MouseArea {
anchors.fill: root
cursorShape: Qt.PointingHandCursor
onPressed: function(mouse) {
textField.forceActiveFocus()
mouse.accepted = false
}
}
}