Fix width of divider above buttons at bottom of settings dialogs

This commit is contained in:
David Rowe 2016-03-02 12:00:29 +13:00
parent 16fbf60bae
commit d1f4369a5f

View file

@ -127,7 +127,7 @@ Fadable {
// Scrollable window content.
property var pane: Item {
property bool isScrolling: scrollView.height < scrollView.contentItem.height
property int contentWidth: scrollView.width - (isScrolling ? 11 : 0)
property int contentWidth: scrollView.width - (isScrolling ? 10 : 0)
property int scrollHeight: scrollView.height
anchors.fill: parent