Launcher: fix on-disk aircraft variant previews
This fixes e.g the issue with the Shuttle reported by Thorsten, variant previews are now shown correctly.
This commit is contained in:
parent
e571564c59
commit
6e6fafd5b4
1 changed files with 2 additions and 1 deletions
|
@ -318,7 +318,8 @@ QVariantList QmlAircraftInfo::previews() const
|
|||
{
|
||||
if (_item) {
|
||||
QVariantList result;
|
||||
Q_FOREACH(QUrl u, _item->previews) {
|
||||
auto actualItem = resolveItem();
|
||||
Q_FOREACH(QUrl u, actualItem->previews) {
|
||||
result.append(u);
|
||||
}
|
||||
return result;
|
||||
|
|
Loading…
Add table
Reference in a new issue