Limit max height of room settings topic area
This commit is contained in:
parent
3314489a26
commit
e5d64f76b7
|
@ -1,11 +1,15 @@
|
||||||
// SPDX-License-Identifier: LGPL-3.0-or-later
|
// SPDX-License-Identifier: LGPL-3.0-or-later
|
||||||
|
|
||||||
import QtQuick 2.12
|
import QtQuick 2.12
|
||||||
|
import QtQuick.Controls 2.12
|
||||||
import QtQuick.Layouts 1.12
|
import QtQuick.Layouts 1.12
|
||||||
import "../../../Base"
|
import "../../../Base"
|
||||||
import "../../../Base/ButtonLayout"
|
import "../../../Base/ButtonLayout"
|
||||||
|
|
||||||
HFlickableColumnPage {
|
HFlickableColumnPage {
|
||||||
|
id: settingsView
|
||||||
|
|
||||||
|
|
||||||
property var saveFuture: null
|
property var saveFuture: null
|
||||||
|
|
||||||
readonly property bool anyChange:
|
readonly property bool anyChange:
|
||||||
|
@ -113,9 +117,14 @@ HFlickableColumnPage {
|
||||||
|
|
||||||
Layout.fillWidth: true
|
Layout.fillWidth: true
|
||||||
|
|
||||||
HTextArea {
|
ScrollView {
|
||||||
// TODO: limit height
|
clip: true
|
||||||
width: parent.width
|
width: parent.width
|
||||||
|
height:
|
||||||
|
Math.min(topicAreaIn.implicitHeight, settingsView.height / 2)
|
||||||
|
|
||||||
|
HTextArea {
|
||||||
|
id: topicAreaIn
|
||||||
placeholderText: qsTr("This room is about...")
|
placeholderText: qsTr("This room is about...")
|
||||||
defaultText: chat.roomInfo.plain_topic
|
defaultText: chat.roomInfo.plain_topic
|
||||||
enabled: chat.roomInfo.can_set_topic
|
enabled: chat.roomInfo.can_set_topic
|
||||||
|
@ -126,6 +135,7 @@ HFlickableColumnPage {
|
||||||
encryptCheckBox
|
encryptCheckBox
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
|
||||||
HCheckBox {
|
HCheckBox {
|
||||||
id: encryptCheckBox
|
id: encryptCheckBox
|
||||||
|
|
Loading…
Reference in New Issue
Block a user