diff options
Diffstat (limited to 'mobile-widgets/qml/DiveList.qml')
-rw-r--r-- | mobile-widgets/qml/DiveList.qml | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/mobile-widgets/qml/DiveList.qml b/mobile-widgets/qml/DiveList.qml index 138b807e8..0806a8bee 100644 --- a/mobile-widgets/qml/DiveList.qml +++ b/mobile-widgets/qml/DiveList.qml @@ -14,7 +14,12 @@ Kirigami.ScrollablePage { verticalScrollBarPolicy: Qt.ScrollBarAlwaysOff property int dlHorizontalPadding: Kirigami.Units.gridUnit / 2 - Kirigami.Units.smallSpacing + 1 property QtObject diveListModel: null - Kirigami.Theme.backgroundColor: subsurfaceTheme.backgroundColor // used for background of left and right action button + // we want to use our own colors for Kirigami, so let's define our colorset + Kirigami.Theme.inherit: false + Kirigami.Theme.colorSet: Kirigami.Theme.Button + Kirigami.Theme.backgroundColor: subsurfaceTheme.backgroundColor + Kirigami.Theme.textColor: subsurfaceTheme.textColor + supportsRefreshing: true onRefreshingChanged: { if (refreshing) { |