Jens Mönig 2015-12-23 11:32:28 +01:00
rodzic f50c6fc2d3
commit 4fd33f7de9
2 zmienionych plików z 7 dodań i 2 usunięć

Wyświetl plik

@ -2826,7 +2826,11 @@ end - bulk of 151215
* GUI: Code tweaks
* Portuguese translation update, thanks, Manuel!
151221
151222
------
* Blocks, Objects, Threads, Locale: revert to any key in the key-pressed menu
* GUI: Improve sorting and tab switching in the Project Dialog, Thanks, Michael!
151223
------
* Morphic: fixed #1083

Wyświetl plik

@ -1057,7 +1057,7 @@
/*global window, HTMLCanvasElement, getMinimumFontHeight, FileReader, Audio,
FileList, getBlurredShadowSupport*/
var morphicVersion = '2015-December-21';
var morphicVersion = '2015-December-23';
var modules = {}; // keep track of additional loaded modules
var useBlurredShadows = getBlurredShadowSupport(); // check for Chrome-bug
@ -4905,6 +4905,7 @@ CursorMorph.prototype.destroy = function () {
}
if (this.clipboardHandler) {
document.body.removeChild(this.clipboardHandler);
this.clipboardHandler = null;
}
CursorMorph.uber.destroy.call(this);
};