fixed #507 (limit persistent block zoom to 12x)

thanks, @cycomachead !
pull/3/merge
jmoenig 2014-07-11 17:23:43 +02:00
rodzic f27e72e2b2
commit a33400d6d2
2 zmienionych plików z 2 dodań i 1 usunięć

2
gui.js
Wyświetl plik

@ -3493,7 +3493,7 @@ IDE_Morph.prototype.userSetBlocksScale = function () {
new DialogBoxMorph(
null,
function (num) {
myself.setBlocksScale(num);
myself.setBlocksScale(Math.min(num, 12));
}
).withKey('zoomBlocks').prompt(
'Zoom blocks',

Wyświetl plik

@ -2195,3 +2195,4 @@ ______
* Blocks: change the color of the %pause symbol to be more yellowish
* Threads: fixed #506, thanks @haritop, for both the report and for providing the fix!!
* GUI: fixed #412 (incomplete sprite-removal)
* GUI: fixed #507 (limit persistent block zoom to 12x), thanks Michael!