[ChatTextInput] Fix isImage (no such property) and rgba (Should be Qt.rgba)

This commit is contained in:
Noah Davis
2021-01-04 04:01:23 -05:00
parent 9a17c07fdd
commit 338553de16

View File

@@ -202,7 +202,6 @@ ToolBar {
RowLayout {
anchors.right: parent.right
Button {
visible: isImage
icon.name: "document-edit"
// HACK: Use a component because an url doesn't work
@@ -237,7 +236,7 @@ ToolBar {
}
}
Rectangle {
color: rgba(255, 255, 255, 40)
color: Qt.rgba(255, 255, 255, 40)
anchors.left: parent.left
anchors.right: parent.right
anchors.bottom: parent.bottom