mirror of
https://github.com/overte-org/overte.git
synced 2025-04-20 12:04:18 +02:00
Fix width of divider above buttons at bottom of settings dialogs
This commit is contained in:
parent
16fbf60bae
commit
d1f4369a5f
1 changed files with 1 additions and 1 deletions
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue