Skip to content

Commit

Permalink
Merge branch 'pr/1714' into dev
Browse files Browse the repository at this point in the history
  • Loading branch information
Lionel Laské committed Jan 22, 2025
2 parents 3a84527 + 16f8d7b commit 9b55671
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,7 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
- Sample values in Chart activity are not initialized #1695
- No Move Hint for "En passant" in Chess Activity #1707
- Info Update : Planet Activity #1709
- Minute numbers still visible in clock activity even after switching to Nice Clock #1713

## [1.8.0] - 2024-04-10
### Added
Expand Down
4 changes: 2 additions & 2 deletions activities/Clock.activity/js/activity.js
Original file line number Diff line number Diff line change
Expand Up @@ -555,8 +555,8 @@ define(["sugar-web/activity/activity","sugar-web/env","sugar-web/graphics/radiob
Clock.prototype.drawNiceBackground = function () {
var ctx = this.bgCanvasElem.getContext('2d');

ctx.clearRect(this.margin, this.margin,
this.radius * 2, this.radius * 2);
ctx.clearRect(0, 0,
this.size, this.size);
ctx.drawImage(niceImage, this.margin, this.margin,
this.radius * 2, this.radius * 2);
}
Expand Down

0 comments on commit 9b55671

Please sign in to comment.