mirror of
https://github.com/muesli/telephant
synced 2024-11-22 19:33:06 +00:00
8 lines
236 B
QML
8 lines
236 B
QML
import QtQuick 2.13
|
|
|
|
ListModel {
|
|
Component.onCompleted: {
|
|
append({"panename": "Messages", "msgmodel": messageModel});
|
|
append({"panename": "Notifications", "panesticky": true, "msgmodel": notificationModel});
|
|
}
|
|
}
|