Fix bug in UI
This commit is contained in:
parent
26e309e327
commit
5da02dd238
1 changed files with 3 additions and 3 deletions
|
@ -207,10 +207,10 @@ Page {
|
||||||
text: description !== "" && (description.charAt(0) == '@'
|
text: description !== "" && (description.charAt(0) == '@'
|
||||||
|| description.charAt(
|
|| description.charAt(
|
||||||
0) == '#') ? description + ' ' : ''
|
0) == '#') ? description + ' ' : ''
|
||||||
height: Math.max(250, Math.min(900, implicitHeight))
|
height: Math.max(300, Math.min(900, implicitHeight))
|
||||||
//height: implicitHeight
|
//height: implicitHeight
|
||||||
horizontalAlignment: Text.AlignLeft
|
horizontalAlignment: Text.AlignLeft
|
||||||
placeholderText: qsTrId("What's on your mind?")
|
placeholderText: qsTr("What's on your mind?")
|
||||||
EnterKey.onClicked: {
|
EnterKey.onClicked: {
|
||||||
//tweet()
|
//tweet()
|
||||||
}
|
}
|
||||||
|
@ -362,10 +362,10 @@ Page {
|
||||||
ComboBox {
|
ComboBox {
|
||||||
id: privacy
|
id: privacy
|
||||||
anchors {
|
anchors {
|
||||||
|
top: toot.bottom
|
||||||
topMargin: -Theme.paddingSmall * 2
|
topMargin: -Theme.paddingSmall * 2
|
||||||
left: btnAddImage.right
|
left: btnAddImage.right
|
||||||
right: btnSend.left
|
right: btnSend.left
|
||||||
bottom: parent.bottom
|
|
||||||
}
|
}
|
||||||
menu: ContextMenu {
|
menu: ContextMenu {
|
||||||
MenuItem {
|
MenuItem {
|
||||||
|
|
Loading…
Reference in a new issue