mirror of
https://github.com/monero-project/monero-gui.git
synced 2025-01-03 17:39:54 +00:00
fix clunky scrolling behavior on flickables
This commit is contained in:
parent
46227bdad0
commit
94561ed2a6
4 changed files with 4 additions and 0 deletions
|
@ -350,6 +350,7 @@ Rectangle {
|
|||
anchors.top: parent.top
|
||||
anchors.bottom: networkStatus.top
|
||||
width: parent.width
|
||||
boundsBehavior: isMac ? Flickable.DragAndOvershootBounds : Flickable.StopAtBounds
|
||||
clip: true
|
||||
|
||||
Column {
|
||||
|
|
|
@ -186,6 +186,7 @@ Rectangle {
|
|||
Layout.fillWidth: true
|
||||
Layout.fillHeight: true
|
||||
clip: true
|
||||
boundsBehavior: isMac ? Flickable.DragAndOvershootBounds : Flickable.StopAtBounds
|
||||
|
||||
ScrollBar.vertical: ScrollBar {
|
||||
parent: root
|
||||
|
|
|
@ -125,6 +125,7 @@ Rectangle {
|
|||
id: flickable
|
||||
anchors.fill: parent
|
||||
ScrollBar.vertical: ScrollBar { }
|
||||
boundsBehavior: isMac ? Flickable.DragAndOvershootBounds : Flickable.StopAtBounds
|
||||
|
||||
TextArea.flickable: TextArea {
|
||||
id: dialogContent
|
||||
|
|
|
@ -267,6 +267,7 @@ Rectangle {
|
|||
id: wizardFlickable
|
||||
anchors.fill: parent
|
||||
clip: true
|
||||
boundsBehavior: isMac ? Flickable.DragAndOvershootBounds : Flickable.StopAtBounds
|
||||
|
||||
ScrollBar.vertical: ScrollBar {
|
||||
parent: wizardController
|
||||
|
|
Loading…
Reference in a new issue