diff --git a/CHANGELOG.md b/CHANGELOG.md index 2c761c029..3ec05ce54 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -38,6 +38,7 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0. - Time fluctuations in Clock Activity #1507 - Resizing textarea in activity palette looks ugly #1303 - Player without face and color #1536 +- Undeletable text in FotoToon #1549 ## [1.7.0] - 2023-03-28 ### Added diff --git a/activities/Fototoon.activity/js/toon.js b/activities/Fototoon.activity/js/toon.js index 4ec8cddc6..92d6627e2 100644 --- a/activities/Fototoon.activity/js/toon.js +++ b/activities/Fototoon.activity/js/toon.js @@ -550,7 +550,6 @@ define(["easel","sugar-web/datastore","sugar-web/env","l10n","humane"], function }, false);; var editor = this._textpalette.editorElem; - var colorButtons = this._textpalette.colorButtons; for (var i = 0; i < colorButtons.length; i++) { colorButtons[i].addEventListener('click', function(e) { @@ -1511,6 +1510,7 @@ define(["easel","sugar-web/datastore","sugar-web/env","l10n","humane"], function this._stage.removeChild(this._removeButton); this._textViewer.remove(); this._stage.update(); + box.selectGlobe(null); }; };