You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
471 B
QML
21 lines
471 B
QML
/*
|
|
SPDX-FileCopyrightText: 2020 Aleix Pol Gonzalez <aleixpol@kde.org>
|
|
|
|
SPDX-License-Identifier: LGPL-2.0-or-later
|
|
*/
|
|
|
|
import QtQuick.Window 2.6
|
|
import org.kde.taskmanager 0.1 as TaskManager
|
|
|
|
TaskManager.PipeWireSourceItem {
|
|
visible: waylandItem.nodeId > 0
|
|
nodeId: waylandItem.nodeId
|
|
|
|
anchors.fill: parent
|
|
|
|
TaskManager.ScreencastingRequest {
|
|
id: waylandItem
|
|
uuid: !windowsPreviewDlg.visible ? "" : thumbnailSourceItem.winId
|
|
}
|
|
}
|