Move all the timeline QML files into their own QML module. Having them all in the same location is annoying and hard to work with.
14 lines
339 B
QML
14 lines
339 B
QML
// SPDX-FileCopyrightText: 2023 James Graham <james.h.graham@protonmail.com>
|
|
// SPDX-License-Identifier: GPL-2.0-only OR GPL-3.0-only OR LicenseRef-KDE-Accepted-GPL
|
|
|
|
import QtQuick
|
|
|
|
import org.kde.kirigami as Kirigami
|
|
|
|
TimelineDelegate {
|
|
id: root
|
|
contentItem: Kirigami.PlaceholderMessage {
|
|
text: i18n("Loading…")
|
|
}
|
|
}
|