fix: message scrollbar
This commit is contained in:
parent
d84c16bc63
commit
bcec11c432
|
@ -3,6 +3,7 @@ import QtQuick.Controls 2.13
|
||||||
import QtQuick.Layouts 1.13
|
import QtQuick.Layouts 1.13
|
||||||
import "../../../shared"
|
import "../../../shared"
|
||||||
import "../../../imports"
|
import "../../../imports"
|
||||||
|
import "./components"
|
||||||
import "./ChatColumn"
|
import "./ChatColumn"
|
||||||
|
|
||||||
StackLayout {
|
StackLayout {
|
||||||
|
@ -37,6 +38,9 @@ StackLayout {
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
ProfilePopup {
|
||||||
|
id: profilePopup
|
||||||
|
}
|
||||||
|
|
||||||
Rectangle {
|
Rectangle {
|
||||||
id: chatInputContainer
|
id: chatInputContainer
|
||||||
|
|
|
@ -21,10 +21,6 @@ ScrollView {
|
||||||
ScrollBar.vertical.policy: chatLogView.contentHeight > chatLogView.height ? ScrollBar.AlwaysOn : ScrollBar.AlwaysOff
|
ScrollBar.vertical.policy: chatLogView.contentHeight > chatLogView.height ? ScrollBar.AlwaysOn : ScrollBar.AlwaysOff
|
||||||
ScrollBar.horizontal.policy: ScrollBar.AlwaysOff
|
ScrollBar.horizontal.policy: ScrollBar.AlwaysOff
|
||||||
|
|
||||||
ProfilePopup {
|
|
||||||
id: profilePopup
|
|
||||||
}
|
|
||||||
|
|
||||||
ListView {
|
ListView {
|
||||||
anchors.fill: parent
|
anchors.fill: parent
|
||||||
spacing: 4
|
spacing: 4
|
||||||
|
|
Loading…
Reference in New Issue