Skip to content

Commit 9b55671

Browse files
author
Lionel Laské
committed
Merge branch 'pr/1714' into dev
2 parents 3a84527 + 16f8d7b commit 9b55671

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -42,6 +42,7 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
4242
- Sample values in Chart activity are not initialized #1695
4343
- No Move Hint for "En passant" in Chess Activity #1707
4444
- Info Update : Planet Activity #1709
45+
- Minute numbers still visible in clock activity even after switching to Nice Clock #1713
4546

4647
## [1.8.0] - 2024-04-10
4748
### Added

activities/Clock.activity/js/activity.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -555,8 +555,8 @@ define(["sugar-web/activity/activity","sugar-web/env","sugar-web/graphics/radiob
555555
Clock.prototype.drawNiceBackground = function () {
556556
var ctx = this.bgCanvasElem.getContext('2d');
557557

558-
ctx.clearRect(this.margin, this.margin,
559-
this.radius * 2, this.radius * 2);
558+
ctx.clearRect(0, 0,
559+
this.size, this.size);
560560
ctx.drawImage(niceImage, this.margin, this.margin,
561561
this.radius * 2, this.radius * 2);
562562
}

0 commit comments

Comments
 (0)