-
Notifications
You must be signed in to change notification settings - Fork 49
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
thanks, @DarDoro for reporting this!
- Loading branch information
Showing
1 changed file
with
3 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -8,7 +8,7 @@ | |
written by Jens Mönig | ||
[email protected] | ||
Copyright (C) 2010-2020 by Jens Mönig | ||
Copyright (C) 2010-2021 by Jens Mönig | ||
This file is part of Snap!. | ||
|
@@ -1280,7 +1280,7 @@ | |
|
||
/*global window, HTMLCanvasElement, FileReader, Audio, FileList, Map*/ | ||
|
||
var morphicVersion = '2020-December-02'; | ||
var morphicVersion = '2021-January-30'; | ||
var modules = {}; // keep track of additional loaded modules | ||
var useBlurredShadows = true; | ||
|
||
|
@@ -12589,6 +12589,7 @@ WorldMorph.prototype.edit = function (aStringOrTextMorph) { | |
this.cursor = new CursorMorph(aStringOrTextMorph, this.keyboardHandler); | ||
this.keyboardFocus = this.cursor; | ||
aStringOrTextMorph.parent.add(this.cursor); | ||
this.cursor.rerender(); | ||
if (MorphicPreferences.useSliderForInput) { | ||
if (!aStringOrTextMorph.parentThatIsA(MenuMorph)) { | ||
this.slide(aStringOrTextMorph); | ||
|