tweak Boolean "tick" and "cross" symbols

dev
Jens Mönig 2016-06-02 18:32:25 +02:00
rodzic 91a8fc1c7f
commit 5e82a384a7
1 zmienionych plików z 2 dodań i 2 usunięć

Wyświetl plik

@ -8193,7 +8193,7 @@ BooleanSlotMorph.prototype.drawLabel = function (context) {
}
// "tick:"
context.strokeStyle = 'white';
context.lineWidth = this.edge * 2;
context.lineWidth = this.edge + shift;
context.lineCap = 'round';
context.lineJoin = 'miter';
context.beginPath();
@ -8212,7 +8212,7 @@ BooleanSlotMorph.prototype.drawLabel = function (context) {
}
// "cross:"
context.strokeStyle = 'white';
context.lineWidth = this.edge * 2;
context.lineWidth = this.edge;
context.lineCap = 'butt';
context.beginPath();
context.moveTo(x - r2, y - r2);