Use new scrollbars for scrollviews (ie text areas)

This commit is contained in:
miruka
2020-06-22 13:57:49 -04:00
parent 783a711799
commit ae37e13c6e
5 changed files with 20 additions and 5 deletions

View File

@@ -0,0 +1,16 @@
// SPDX-License-Identifier: LGPL-3.0-or-later
import QtQuick 2.12
import QtQuick.Controls 2.12
ScrollView {
id: scrollView
ScrollBar.vertical: HScrollBar {
parent: scrollView
x: scrollView.mirrored ? 0 : scrollView.width - width
y: scrollView.topPadding
height: scrollView.availableHeight
active: scrollView.ScrollBar.horizontal.active
}
}