mirror of
https://github.com/overte-org/overte.git
synced 2025-08-08 20:56:52 +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.
|
// Scrollable window content.
|
||||||
property var pane: Item {
|
property var pane: Item {
|
||||||
property bool isScrolling: scrollView.height < scrollView.contentItem.height
|
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
|
property int scrollHeight: scrollView.height
|
||||||
|
|
||||||
anchors.fill: parent
|
anchors.fill: parent
|
||||||
|
|
Loading…
Reference in a new issue