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

Add FHD 21:9 monitor offset

This commit is contained in:
Elias Steurer 2022-11-12 14:45:41 +01:00
parent 9538023b40
commit 561986b093

View File

@ -200,13 +200,16 @@ Rectangle {
anchors {
top: parent.top
topMargin: {
// 16:9
if(root.width === 1920 && root.height === 1080)
return 0
// Ultrawide 21:9
if(root.width === 3440 && root.height === 1440)
// FHD 16:9
if (root.width === 1920 && root.height === 1080)
return 0
// FHD 21:9
if (root.width === 2560 && root.height === 1080)
return -66
// WQHD 21:9
if (root.width === 3440 && root.height === 1440)
return -93
return 0
return 0
}
left: parent.left
right: parent.right
@ -356,13 +359,10 @@ Rectangle {
text: "imgCover.status " + imgCover.status
font.pointSize: 14
}
}
background: Rectangle {
opacity: 0.5
}
}
}