Fix RoomHeader buttons not taking enough height
This commit is contained in:
parent
fa12d3f4ec
commit
7e44134dfc
|
@ -60,25 +60,16 @@ HRectangle {
|
||||||
Row {
|
Row {
|
||||||
id: viewButtons
|
id: viewButtons
|
||||||
Layout.preferredWidth: collapseButtons ? 0 : implicitWidth
|
Layout.preferredWidth: collapseButtons ? 0 : implicitWidth
|
||||||
|
Layout.fillHeight: true
|
||||||
|
|
||||||
HButton {
|
Repeater {
|
||||||
iconName: "room_view_members"
|
model: [
|
||||||
}
|
"members", "files", "notifications", "history", "settings"
|
||||||
|
]
|
||||||
HButton {
|
HButton {
|
||||||
iconName: "room_view_files"
|
iconName: "room_view_" + modelData
|
||||||
}
|
iconDimension: 22
|
||||||
|
}
|
||||||
HButton {
|
|
||||||
iconName: "room_view_notifications"
|
|
||||||
}
|
|
||||||
|
|
||||||
HButton {
|
|
||||||
iconName: "room_view_history"
|
|
||||||
}
|
|
||||||
|
|
||||||
HButton {
|
|
||||||
iconName: "room_view_settings"
|
|
||||||
}
|
}
|
||||||
|
|
||||||
Behavior on Layout.preferredWidth {
|
Behavior on Layout.preferredWidth {
|
||||||
|
|
Loading…
Reference in New Issue
Block a user