Fix voxel size text display

This commit is contained in:
David Rowe 2014-12-06 09:24:30 -08:00
parent bd6ea9b4e7
commit fd00ad95ca

View file

@ -319,7 +319,7 @@ function ScaleSelector() {
width: this.SECOND_PART, height: this.height, width: this.SECOND_PART, height: this.height,
topMargin: 13, topMargin: 13,
text: this.scale.toString(), text: this.scale.toString(),
alpha: 0.9, backgroundAlpha: 0.0,
visible: editToolsOn visible: editToolsOn
}); });
this.powerOverlay = Overlays.addOverlay("text", { this.powerOverlay = Overlays.addOverlay("text", {
@ -327,7 +327,7 @@ function ScaleSelector() {
width: this.SECOND_PART, height: this.height, width: this.SECOND_PART, height: this.height,
leftMargin: 28, leftMargin: 28,
text: this.power.toString(), text: this.power.toString(),
alpha: 0.0, backgroundAlpha: 0.0,
visible: false visible: false
}); });
this.setScale = function(scale) { this.setScale = function(scale) {