Fix the Face Camera checkbox on the text entity properties tab.

The checkbox appeared unchecked even if the underlying property was true.
This commit is contained in:
hiflex 2017-05-11 20:12:10 -05:00 committed by GitHub
parent c40e3d6ac9
commit a4406906f3

View file

@ -1020,7 +1020,7 @@ function loaded() {
elTextText.value = properties.text;
elTextLineHeight.value = properties.lineHeight.toFixed(4);
elTextFaceCamera = properties.faceCamera;
elTextFaceCamera.checked = properties.faceCamera;
elTextTextColor.style.backgroundColor = "rgb(" + properties.textColor.red + "," + properties.textColor.green + "," + properties.textColor.blue + ")";
elTextTextColorRed.value = properties.textColor.red;
elTextTextColorGreen.value = properties.textColor.green;