diff options
Diffstat (limited to 'qml/ChatPage.qml')
-rw-r--r-- | qml/ChatPage.qml | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/qml/ChatPage.qml b/qml/ChatPage.qml index 63e3dae..fb99eeb 100644 --- a/qml/ChatPage.qml +++ b/qml/ChatPage.qml @@ -86,6 +86,13 @@ Kirigami.ScrollablePage { * item height from the height of currently visible messages. */ verticalLayoutDirection: ListView.BottomToTop + ScrollBar.vertical: ScrollBar { + wheelEnabled: true + hoverEnabled: true + background: Rectangle { + opacity: hovered ? 1 : 0.0 + } + } delegate: Message { message: root.context.getMessage(msgId) |