diff options
| author | Sander Ferdinand <sa.ferdinand@gmail.com> | 2018-03-19 03:56:15 +0100 |
|---|---|---|
| committer | moneromooo-monero <moneromooo-monero@users.noreply.github.com> | 2018-03-29 23:04:03 +0100 |
| commit | bb9e4ee0b9663bb11e2ea52f8f4c26ad47a0a3aa (patch) | |
| tree | ddd135ed733ad5d80aef575aad0c972140b0949e /components/Scroll.qml | |
| parent | 57a9508849f36c7cda513df98e478babbc3e6cb3 (diff) | |
| download | monzero-gui-bb9e4ee0b9663bb11e2ea52f8f4c26ad47a0a3aa.tar.gz monzero-gui-bb9e4ee0b9663bb11e2ea52f8f4c26ad47a0a3aa.tar.xz monzero-gui-bb9e4ee0b9663bb11e2ea52f8f4c26ad47a0a3aa.zip | |
Changed scrollbar width
Diffstat (limited to 'components/Scroll.qml')
| -rw-r--r-- | components/Scroll.qml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/components/Scroll.qml b/components/Scroll.qml index 8ef01087..43876a49 100644 --- a/components/Scroll.qml +++ b/components/Scroll.qml @@ -51,7 +51,7 @@ Item { Rectangle { id: scroll - width: 15 + width: 4 height: { var t = (flickable.height * flickable.height) / flickable.contentHeight return t < 20 ? 20 : t @@ -62,7 +62,7 @@ Item { visible: flickable.contentHeight > flickable.height Behavior on opacity { - NumberAnimation { duration: 100; easing.type: Easing.InQuad } + NumberAnimation { duration: 200; easing.type: Easing.InQuad } } MouseArea { |
