fix white color in input slots

pull/95/head
jmoenig 2020-04-04 19:08:47 +02:00
rodzic 1e9ffeda60
commit 433fc8596b
1 zmienionych plików z 1 dodań i 1 usunięć

Wyświetl plik

@ -9313,7 +9313,7 @@ InputSlotMorph.prototype.fixLayout = function () {
contents.isEditable = (!this.isReadOnly);
if (this.isReadOnly) {
contents.disableSelecting();
contents.color = new Color(254, 254, 254);
contents.color = new Color(255, 255, 255);
} else {
contents.enableSelecting();
contents.color = new Color(0, 0, 0);