Skip to content

Commit

Permalink
Fix issue with dlicon change, don't change it
Browse files Browse the repository at this point in the history
  • Loading branch information
walokra committed Dec 18, 2020
1 parent ff22a52 commit 1e18991
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions qml/pages/ImageButtons.qml
Original file line number Diff line number Diff line change
Expand Up @@ -107,14 +107,15 @@ Row {
infoBanner.showText("Image saved as " + name);
}
savingInProgress = false;
dlIcon.icon.source = constant.iconSaveDone;
// FIXME: TypeError: Cannot read property of null
// dlIcon.icon.source = constant.iconSaveDone;
}
function errorImageExists(name) {
if (infoBanner) {
infoBanner.showText("Image already saved as " + name);
}
savingInProgress = false;
dlIcon.icon.source = constant.iconSaveDone;
// dlIcon.icon.source = constant.iconSaveDone;
}
}

Expand Down

0 comments on commit 1e18991

Please sign in to comment.