mirror of
https://github.com/JulianGro/overte.git
synced 2025-04-29 19:02:55 +02:00
Fix voxel size text display
This commit is contained in:
parent
bd6ea9b4e7
commit
fd00ad95ca
1 changed files with 2 additions and 2 deletions
|
@ -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) {
|
||||||
|
|
Loading…
Reference in a new issue