diff --git a/CHANGELOG.md b/CHANGELOG.md index e80a98a08..6e63c50b1 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -29,6 +29,7 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0. - PDF generated by Story doesn't contain image on iOS/Android #969 - Bug in Calligra Activity when letters deleted #1466 - Missing flag handling in ColorMyWorld #1603 +- Position of Sugar Icon in Popup on homescreen is toward bottom right #1662 ## [1.8.0] - 2024-04-10 ### Added diff --git a/js/popup.js b/js/popup.js index 389f472f9..ab9d01fab 100644 --- a/js/popup.js +++ b/js/popup.js @@ -8,7 +8,7 @@ enyo.kind({ published: { margin: null, header: null, items: null, footer: null }, components: [ {name: "popuptitle", classes: "popup-title", ontap: "runHeaderAction", components: [ - {name: "icon", showing: false, kind: "Sugar.Icon", x: 5, y: 5, size: constant.iconSizeList}, + {name: "icon", showing: false, kind: "Sugar.Icon", x: 1, y: 1, size: constant.iconSizeList}, {name: "name", classes: "popup-name-text"}, {name: "title", classes: "popup-title-text"}, ]},