kopia lustrzana https://github.com/backface/turtlestitch
make stage handle darker
rodzic
a3bfefdef9
commit
26a8aa9cf6
1
gui.js
1
gui.js
|
@ -4825,7 +4825,6 @@ IDE_Morph.prototype.setLanguage = function (lang, callback) {
|
||||||
myself.reflectLanguage(lang, callback);
|
myself.reflectLanguage(lang, callback);
|
||||||
};
|
};
|
||||||
document.head.appendChild(translation);
|
document.head.appendChild(translation);
|
||||||
console.log(translation)
|
|
||||||
translation.src = src;
|
translation.src = src;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
|
@ -141,6 +141,16 @@ IDE_Morph.prototype.buildPanes = function () {
|
||||||
|
|
||||||
};
|
};
|
||||||
|
|
||||||
|
StageHandleMorph.prototype.init = function (target) {
|
||||||
|
this.target = target || null;
|
||||||
|
HandleMorph.uber.init.call(this);
|
||||||
|
this.color = MorphicPreferences.isFlat ?
|
||||||
|
new Color(125, 125, 125) : new Color(190, 190, 190);
|
||||||
|
this.isDraggable = false;
|
||||||
|
this.noticesTransparentClick = true;
|
||||||
|
this.setExtent(new Point(12, 50));
|
||||||
|
};
|
||||||
|
|
||||||
IDE_Morph.prototype.origSetStageExtent = IDE_Morph.prototype.setStageExtent;
|
IDE_Morph.prototype.origSetStageExtent = IDE_Morph.prototype.setStageExtent;
|
||||||
IDE_Morph.prototype.setStageExtent = function (aPoint) {
|
IDE_Morph.prototype.setStageExtent = function (aPoint) {
|
||||||
this.origSetStageExtent(aPoint);
|
this.origSetStageExtent(aPoint);
|
||||||
|
|
|
@ -14,9 +14,7 @@ SnapSerializer.prototype.openProject = function (project, ide) {
|
||||||
ide.origCreator = project.origCreator || '';
|
ide.origCreator = project.origCreator || '';
|
||||||
ide.creator = project.creator || '';
|
ide.creator = project.creator || '';
|
||||||
ide.remixHistory = project.remixHistorycreat || '';
|
ide.remixHistory = project.remixHistorycreat || '';
|
||||||
|
//console.log("name: " + ide.projectName + ", creator: " + ide.creator + ", origName: " + ide.origName + ", origCreator: " + ide.origCreator);
|
||||||
console.log("name: " + ide.projectName + ", creator: " + ide.creator + ", origName: " + ide.origName + ", origCreator: " + ide.origCreator);
|
|
||||||
|
|
||||||
if (ide.globalVariables) {
|
if (ide.globalVariables) {
|
||||||
ide.globalVariables = project.globalVariables;
|
ide.globalVariables = project.globalVariables;
|
||||||
}
|
}
|
||||||
|
|
Ładowanie…
Reference in New Issue