From a3c249abe9f926cce502998a2935b8860007750a Mon Sep 17 00:00:00 2001 From: Cameron Gutman Date: Tue, 2 Mar 2021 19:03:09 -0600 Subject: [PATCH] Don't load the app label asynchronously --- app/gui/AppView.qml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/app/gui/AppView.qml b/app/gui/AppView.qml index 33a71822..c737c4c2 100644 --- a/app/gui/AppView.qml +++ b/app/gui/AppView.qml @@ -173,7 +173,9 @@ CenteredGridView { Loader { id: appNameTextLoader active: appIcon.isPlaceholder - asynchronous: true + + // This loader is not asynchronous to avoid noticeable differences + // in the time in which the text loads for each game. width: appIcon.width height: model.running ? 175 : appIcon.height