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",
text: qsTr("Accept"),
iconName: "invite_accept",
iconName: "invite-accept",
},
{
name: "decline",
text: qsTr("Decline"),
iconName: "invite_decline",
iconName: "invite-decline",
}
]

View File

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

View File

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