Utils.urlExtension: don't lowercase returned ext

This commit is contained in:
miruka
2020-03-09 11:00:48 -04:00
parent ff642485e8
commit 2a2b3df845
4 changed files with 5 additions and 4 deletions

View File

@@ -14,7 +14,8 @@ Image {
property bool broken: false
property bool animate: true
property bool animated: utils.urlExtension(image.source) === "gif"
property bool animated:
utils.urlExtension(image.source).toLowerCase() === "gif"
property alias showProgressBar: progressBarLoader.active
property bool inderterminateProgressBar: false