Hide status field for now, adjust big font size
This commit is contained in:
@@ -31,7 +31,7 @@ HScalingBox {
|
||||
|
||||
HLabel {
|
||||
id: interfaceTitle
|
||||
font.pixelSize: theme.fontSize.big
|
||||
font.pixelSize: theme.fontSize.bigger
|
||||
}
|
||||
}
|
||||
|
||||
|
@@ -59,6 +59,7 @@ SwipeView {
|
||||
font.pixelSize: theme.fontSize.big
|
||||
elide: Text.ElideRight
|
||||
horizontalAlignment: Text.AlignHCenter
|
||||
verticalAlignment: Text.AlignVCenter
|
||||
|
||||
Layout.leftMargin: currentSpacing
|
||||
Layout.rightMargin: Layout.leftMargin
|
||||
|
@@ -39,7 +39,9 @@ HRectangle {
|
||||
text: displayName
|
||||
font.pixelSize: theme.fontSize.big
|
||||
elide: Text.ElideRight
|
||||
verticalAlignment: Text.AlignVCenter
|
||||
|
||||
Layout.fillHeight: true
|
||||
Layout.maximumWidth: Math.max(
|
||||
0,
|
||||
row.width - row.totalSpacing - avatar.width -
|
||||
@@ -53,7 +55,9 @@ HRectangle {
|
||||
text: topic
|
||||
font.pixelSize: theme.fontSize.small
|
||||
elide: Text.ElideRight
|
||||
verticalAlignment: Text.AlignVCenter
|
||||
|
||||
Layout.fillHeight: true
|
||||
Layout.maximumWidth: Math.max(
|
||||
0,
|
||||
row.width - row.totalSpacing - avatar.width -
|
||||
|
@@ -41,14 +41,17 @@ Column {
|
||||
HLabel {
|
||||
id: accountLabel
|
||||
text: userInfo.displayName || model.userId
|
||||
font.pixelSize: theme.fontSize.big
|
||||
elide: HLabel.ElideRight
|
||||
leftPadding: sidePane.currentSpacing
|
||||
rightPadding: leftPadding
|
||||
|
||||
elide: HLabel.ElideRight
|
||||
Layout.fillWidth: true
|
||||
}
|
||||
|
||||
HTextField {
|
||||
visible: false // TODO
|
||||
|
||||
id: statusEdit
|
||||
text: userInfo.statusMessage
|
||||
placeholderText: qsTr("Set status message")
|
||||
|
@@ -23,7 +23,7 @@ QtObject {
|
||||
property int smaller: 8
|
||||
property int small: 13
|
||||
property int normal: 16
|
||||
property int big: 24
|
||||
property int big: 22
|
||||
property int bigger: 32
|
||||
property int biggest: 48
|
||||
}
|
||||
|
Reference in New Issue
Block a user