mirror of
https://gitgud.io/wackyideas/aerothemeplasma.git
synced 2024-08-15 00:43:43 +00:00
20 lines
497 B
QML
Executable file
20 lines
497 B
QML
Executable file
/*
|
|
SPDX-FileCopyrightText: 2020 Aleix Pol Gonzalez <aleixpol@kde.org>
|
|
|
|
SPDX-License-Identifier: LGPL-2.0-or-later
|
|
*/
|
|
|
|
import QtQuick.Window 2.14
|
|
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: toolTipDelegate.Window.visibility === Window.Hidden ? "" : thumbnailSourceItem.winId
|
|
}
|
|
}
|