shift-shell/containments/panel/package/contents/ui/FullNotificationsContainer.qml
2021-04-09 20:59:05 +00:00

25 lines
555 B
QML

/*
* SPDX-FileCopyrightText: 2019 Marco Martin <mart@kde.org>
*
* SPDX-License-Identifier: GPL-2.0-or-later
*/
import QtQuick 2.12
import QtQuick.Layouts 1.3
import org.kde.plasma.core 2.0 as PlasmaCore
import org.kde.notificationmanager 1.0 as NotificationManager
FullContainer {
id: fullContainer
shouldBeVisible: applet && historyModel.count > 0
visible: shouldBeVisible
NotificationManager.Notifications {
id: historyModel
showExpired: true
showDismissed: true
expandUnread: true
}
}