mirror of
https://github.com/moonlight-stream/moonlight-qt.git
synced 2026-06-17 14:11:33 +00:00
Fix incorrect placeholder status after loading box art causing app label to be absent
This commit is contained in:
+3
-3
@@ -61,9 +61,9 @@ CenteredGridView {
|
|||||||
source: model.boxart
|
source: model.boxart
|
||||||
|
|
||||||
onSourceSizeChanged: {
|
onSourceSizeChanged: {
|
||||||
if ((width == 130 && height == 180) || // GFE 2.0 placeholder image
|
if ((sourceSize.width == 130 && sourceSize.height == 180) || // GFE 2.0 placeholder image
|
||||||
(width == 628 && height == 888) || // GFE 3.0 placeholder image
|
(sourceSize.width == 628 && sourceSize.height == 888) || // GFE 3.0 placeholder image
|
||||||
(width == 200 && height == 266)) // Our no_app_image.png
|
(sourceSize.width == 200 && sourceSize.height == 266)) // Our no_app_image.png
|
||||||
{
|
{
|
||||||
isPlaceholder = true
|
isPlaceholder = true
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user