cccc43a9ae
- Accordion design for accounts and rooms (not finished) - Toolbar and account/room lists reduce correctly, buttons become hamburger menu if not enough width - Can set status using the "Set status message" account fields - Uniformized avatar sizes for sidePane, roomHeader and SendBox
17 lines
355 B
QML
17 lines
355 B
QML
import QtQuick 2.7
|
|
import QtQuick.Controls 2.2
|
|
import QtQuick.Layouts 1.4
|
|
|
|
HButton {
|
|
function toolBarIsBig() {
|
|
return sidePane.width >
|
|
Layout.minimumWidth * (toolBar.children.length - 2)
|
|
}
|
|
|
|
id: "button"
|
|
visible: toolBarIsBig()
|
|
Layout.fillHeight: true
|
|
Layout.fillWidth: true
|
|
Layout.minimumWidth: height
|
|
}
|