mirror of
https://invent.kde.org/marcoa/shift-shell.git
synced 2026-04-27 06:33:08 +00:00
25 lines
555 B
QML
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
|
|
}
|
|
}
|