picture to initial state #7

Merged
gator merged 12 commits from dev into master 2022-12-18 12:24:26 +01:00
Showing only changes of commit c847e6c218 - Show all commits

View File

@ -52,7 +52,7 @@
const reader = new FileReader();
reader.onload = () => {
this.picture.src = reader.result;
this.picture.src = Object.freeze(reader.result);
this.toggle2dDrawFromPicture();
};