From ac36fef96880b30850bd31acecbaacd93e36f958 Mon Sep 17 00:00:00 2001 From: Cameron Gutman Date: Thu, 18 Apr 2019 20:58:40 -0700 Subject: [PATCH] Fix incorrect placeholder status after loading box art causing app label to be absent --- app/gui/AppView.qml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/app/gui/AppView.qml b/app/gui/AppView.qml index 898df369..50b535ed 100644 --- a/app/gui/AppView.qml +++ b/app/gui/AppView.qml @@ -61,9 +61,9 @@ CenteredGridView { source: model.boxart onSourceSizeChanged: { - if ((width == 130 && height == 180) || // GFE 2.0 placeholder image - (width == 628 && height == 888) || // GFE 3.0 placeholder image - (width == 200 && height == 266)) // Our no_app_image.png + if ((sourceSize.width == 130 && sourceSize.height == 180) || // GFE 2.0 placeholder image + (sourceSize.width == 628 && sourceSize.height == 888) || // GFE 3.0 placeholder image + (sourceSize.width == 200 && sourceSize.height == 266)) // Our no_app_image.png { isPlaceholder = true }