Show icons in device type list

This commit is contained in:
Michael Ehrenreich
2023-02-23 00:34:31 +01:00
parent bbb3ccd0db
commit 97be6c6b6e
5 changed files with 19 additions and 4 deletions

View File

@@ -4,4 +4,13 @@ import Qt.labs.folderlistmodel 2.4
FolderListModel {
folder: "qrc:/scheincommander/icons/"
showDirs: false
function getUrlForIcon(name) {
let myFolder = folder;
if (myFolder.length < 1 || myFolder.charAt(myFolder.length - 1) !== '/') {
myFolder = myFolder + '/';
}
return myFolder + name + ".png"
}
}