Debugged changing of the assets

This commit is contained in:
Blue 2024-04-07 20:02:00 -03:00
parent aa815a5bd7
commit 4ed280a550
Signed by: blue
GPG key ID: 9B203B252A63EE38
6 changed files with 51 additions and 3 deletions

View file

@ -63,6 +63,7 @@ Item {
Button {
id: editButton
text: qsTr("Edit")
icon.name: "entry-edit"
flat: true
height: parent.height
onClicked: edit(assetID)
@ -71,9 +72,12 @@ Item {
Button {
id: deleteButton
text: qsTr("Delete")
flat: true
icon.name: "delete"
height: parent.height
onClicked: remove(assetID)
palette { //unfortunately doesn't work anymore
button: "red"
}
}
}
}