Fix bad icon_names → icon-names

This commit is contained in:
miruka 2019-07-18 04:23:23 -04:00
parent ea02ce2316
commit 240885c32a
3 changed files with 5 additions and 5 deletions

View File

@ -25,12 +25,12 @@ Banner {
{ {
name: "accept", name: "accept",
text: qsTr("Accept"), text: qsTr("Accept"),
iconName: "invite_accept", iconName: "invite-accept",
}, },
{ {
name: "decline", name: "decline",
text: qsTr("Decline"), text: qsTr("Decline"),
iconName: "invite_decline", iconName: "invite-decline",
} }
] ]

View File

@ -18,7 +18,7 @@ Banner {
{ {
name: "forget", name: "forget",
text: qsTr("Forget"), text: qsTr("Forget"),
iconName: "forget_room", iconName: "forget-room",
} }
] ]

View File

@ -74,7 +74,7 @@ HRectangle {
"members", "files", "notifications", "history", "settings" "members", "files", "notifications", "history", "settings"
] ]
HUIButton { HUIButton {
iconName: "room_view_" + modelData iconName: "room-view-" + modelData
iconDimension: 22 iconDimension: 22
autoExclusive: true autoExclusive: true
checked: activeButton == modelData checked: activeButton == modelData
@ -95,7 +95,7 @@ HRectangle {
anchors.right: parent.right anchors.right: parent.right
opacity: collapseButtons ? 1 : 0 opacity: collapseButtons ? 1 : 0
visible: opacity > 0 visible: opacity > 0
iconName: "reduced_room_buttons" iconName: "reduced-room-buttons"
Behavior on opacity { Behavior on opacity {
HNumberAnimation { duration: buttonsAnimation.duration * 2 } HNumberAnimation { duration: buttonsAnimation.duration * 2 }