1
0
mirror of https://gitlab.com/kelteseth/ScreenPlay.git synced 2024-09-18 16:32:33 +02:00

Remove no longer used file

This commit is contained in:
kelteseth 2018-03-14 14:28:13 +01:00
parent 8232696446
commit 0e611fd9c6
2 changed files with 0 additions and 33 deletions

View File

@ -45,7 +45,6 @@
<file>qml/MonitorSelectionItem.qml</file>
<file>qml/Navigation.qml</file>
<file>qml/NavigationItem.qml</file>
<file>qml/ScreenPlay.qml</file>
<file>qml/StartupErrorWindow.qml</file>
<file>qml/Community/Community.qml</file>
<file>qml/Community/Feedback.qml</file>

View File

@ -1,32 +0,0 @@
import QtQuick 2.6
import QtAV 1.07
Item {
id:empty
anchors.fill: parent
Loader {
anchors.fill: parent
source: "qrc:/qml/Screens/ScreenVideo.qml"
}
Connections {
target: installedListModel
onSetScreenToVideo:{
installedListModel.setScreenVisibleFromQml(true)
video.stop()
video.source = absolutePath;
video.play();
print(absolutePath)
}
}
Video {
id: video
anchors.fill: parent
implicitWidth: parent.width
fillMode: Qt.KeepAspectRatio
}
}