1
0
mirror of https://gitlab.com/kelteseth/ScreenPlay.git synced 2024-09-18 16:32:33 +02:00
This commit is contained in:
Elias Steurer 2020-08-18 17:19:01 +02:00
parent 95c11702a0
commit 1f7b7d4cb5
2 changed files with 7 additions and 8 deletions

View File

@ -170,7 +170,9 @@ Rectangle {
getActiveMonitors()
root.requestProjectSettings(delegate.index, delegate.installedType, delegate.appID)
root.requestProjectSettings(delegate.index,
delegate.installedType,
delegate.appID)
}
}
}

View File

@ -34,8 +34,7 @@ Popup {
}
onOpened: {
ScreenPlay.screenPlayManager.requestProjectSettingsAtMonitorIndex(
0)
ScreenPlay.screenPlayManager.requestProjectSettingsAtMonitorIndex(0)
}
Item {
@ -95,8 +94,8 @@ Popup {
print(appID)
const wallpaper = ScreenPlay.screenPlayManager.getWallpaperByAppID(
appID)
print("volume", wallpaper.volume)
videoControlWrapper.wallpaper = wallpaper
print("volume", wallpaper.volume, wallpaper)
} else {
videoControlWrapper.state = "hidden"
customPropertiesGridView.visible = true
@ -219,8 +218,7 @@ Popup {
}
}
ToolButton{
ToolButton {
anchors {
top: parent.top
right: parent.right
@ -228,11 +226,10 @@ Popup {
width: 32
height: width
icon.width: 16
icon.height:16
icon.height: 16
icon.source: "qrc:/assets/icons/font-awsome/close.svg"
icon.color: "gray"
onClicked: monitors.close()
}
}
}