Skip to content

Commit

Permalink
Fix Icon type error
Browse files Browse the repository at this point in the history
  • Loading branch information
plfiorini committed Dec 31, 2023
1 parent 59e4fe9 commit a3a5054
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/imports/controls/Icon.qml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ Item {
}
property alias status: image.status
property alias cache: image.cache
readonly property bool valid: status == Image.Ready
readonly property bool valid: image.status == Image.Ready
property bool colorize: (String(icon.source).indexOf(".color.") === -1 &&
String(icon.source).indexOf("image://fluidicontheme/") === -1) ||
String(icon.source).indexOf("symbolic") !== -1 ||
Expand Down

0 comments on commit a3a5054

Please sign in to comment.