Now they are displayed for each day (if there was at least one message on that day) instead of every few hours
18 lines
430 B
QML
18 lines
430 B
QML
/**
|
|
* SPDX-FileCopyrightText: 2019 Black Hat <bhat@encom.eu.org>
|
|
* SPDX-FileCopyrightText: 2020 Carl Schwan <carl@carlschwan.eu>
|
|
*
|
|
* SPDX-License-Identifier: GPL-3.0-only
|
|
*/
|
|
import QtQuick 2.12
|
|
|
|
import org.kde.kirigami 2.13 as Kirigami
|
|
|
|
Kirigami.Heading {
|
|
level: 4
|
|
text: section
|
|
verticalAlignment: Text.AlignVCenter
|
|
topPadding: Kirigami.Units.largeSpacing * 2
|
|
bottomPadding: Kirigami.Units.smallSpacing
|
|
}
|