kopia lustrzana https://github.com/backface/turtlestitch
fixed a zoom blocks glitch
rodzic
3d914e6811
commit
c829168fdc
|
@ -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!
|
||||
|
|
|
@ -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,
|
||||
|
|
Ładowanie…
Reference in New Issue