mirror of
https://github.com/cmclark00/retro-imager.git
synced 2025-05-18 07:55:21 +01:00
Deal with os_list.json not specifying icon for "No filtering"
Solves warning: "qrc:/main.qml:758:21: Unable to assign [undefined] to QUrl"
This commit is contained in:
parent
aeece632dd
commit
1b85b232fd
1 changed files with 1 additions and 1 deletions
|
@ -755,7 +755,7 @@ ApplicationWindow {
|
||||||
spacing: 12
|
spacing: 12
|
||||||
|
|
||||||
Image {
|
Image {
|
||||||
source: icon == "icons/ic_build_48px.svg" ? "icons/cat_misc_utility_images.png": icon
|
source: typeof icon === "undefined" ? "" : icon
|
||||||
Layout.preferredHeight: 64
|
Layout.preferredHeight: 64
|
||||||
Layout.preferredWidth: 64
|
Layout.preferredWidth: 64
|
||||||
sourceSize.width: 64
|
sourceSize.width: 64
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue