fix the edit.js toolbar buttons so they don't vanish when moused-over or clicked

This commit is contained in:
Seth Alves 2017-02-01 16:29:12 -08:00
parent 82efb97654
commit 6671324a33

View file

@ -210,7 +210,10 @@ var toolBar = (function () {
var button = toolBar.addButton({ var button = toolBar.addButton({
objectName: name, objectName: name,
imageURL: imageUrl, imageURL: imageUrl,
buttonState: 1, imageOffOut: 1,
imageOffIn: 2,
imageOnOut: 0,
imageOnIn: 2,
alpha: 0.9, alpha: 0.9,
visible: true visible: true
}); });