mirror of
https://github.com/subsurface/subsurface.git
synced 2024-11-30 22:20:21 +00:00
65d80d3cd0
For some reason, after the update of the main.qml to version 2.2, all Kirigami Pages and scrollablePages show up plain white. So now, set a proper background for these pages. Signed-off-by: Jan Mulder <jlmulder@xs4all.nl>
37 lines
1,007 B
QML
37 lines
1,007 B
QML
// SPDX-License-Identifier: GPL-2.0
|
|
import QtQuick 2.6
|
|
import QtQuick.Window 2.2
|
|
import QtQuick.Dialogs 1.2
|
|
import QtQuick.Layouts 1.2
|
|
import QtQuick.Window 2.2
|
|
import QtQuick.Controls 2.2
|
|
import org.subsurfacedivelog.mobile 1.0
|
|
import org.kde.kirigami 2.2 as Kirigami
|
|
|
|
Kirigami.ScrollablePage {
|
|
id: logWindow
|
|
width: parent.width - Kirigami.Units.gridUnit
|
|
anchors.margins: Kirigami.Units.gridUnit / 2
|
|
objectName: "Log"
|
|
title: qsTr("Application Log")
|
|
background: Rectangle { color: subsurfaceTheme.backgroundColor }
|
|
|
|
ListView {
|
|
anchors.fill: parent
|
|
anchors.topMargin: Kirigami.Units.gridUnit * 2
|
|
model: logModel
|
|
currentIndex: -1
|
|
boundsBehavior: Flickable.StopAtBounds
|
|
maximumFlickVelocity: parent.height * 5
|
|
cacheBuffer: Math.max(5000, parent.height * 5)
|
|
focus: true
|
|
clip: true
|
|
delegate : Text {
|
|
width: logWindow.width
|
|
wrapMode: Text.WrapAtWordBoundaryOrAnywhere
|
|
color: Kirigami.Theme.textColor
|
|
text : message
|
|
font.pointSize: subsurfaceTheme.smallPointSize
|
|
}
|
|
}
|
|
}
|