fixed a zoom blocks glitch

pull/95/head
jmoenig 2020-10-06 16:00:05 +02:00
rodzic 3d914e6811
commit c829168fdc
2 zmienionych plików z 5 dodań i 0 usunięć

Wyświetl plik

@ -23,6 +23,7 @@
* objects: honor (hidden) blurred shadows setting for watcher cell widgets
* tables: honor (hidden) blurred shadows setting for pictograms in tables
* gui: made (hidden) "Blurred shadows" setting persistent, use to get rid of "red bar" artifacts on old laptops using Chrome
* blocks: fixed a zoom blocks glitch
### 2020-10-05
* Greek translation updata, thanks, HM100!

Wyświetl plik

@ -10889,6 +10889,10 @@ BooleanSlotMorph.prototype.drawKnob = function (ctx, progress) {
ctx.arc(x, y, r - (outline / 2), radians(0), radians(360));
ctx.stroke();
if (r < outline + this.edge) {
return;
}
// top-left:
gradient = ctx.createRadialGradient(
x,