mirror of
https://github.com/Qortal/Brooklyn.git
synced 2025-02-23 15:45:53 +00:00
16 lines
264 B
QML
16 lines
264 B
QML
|
import QtQuick 2.15
|
||
|
import org.kde.plasma.private.sessions 2.0
|
||
|
|
||
|
ListView
|
||
|
{
|
||
|
width: 500
|
||
|
height: 500
|
||
|
|
||
|
model: SessionsModel{}
|
||
|
|
||
|
delegate: Text {
|
||
|
text: model.name + " " + model.session + " " + model.displayNumber + " VT" +model.vtNumber
|
||
|
}
|
||
|
|
||
|
}
|