From 6671324a33bff4c2426591a856e66b1561b0090b Mon Sep 17 00:00:00 2001 From: Seth Alves Date: Wed, 1 Feb 2017 16:29:12 -0800 Subject: [PATCH] fix the edit.js toolbar buttons so they don't vanish when moused-over or clicked --- scripts/system/edit.js | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/scripts/system/edit.js b/scripts/system/edit.js index d49f7ad3c5..d2db83de6e 100644 --- a/scripts/system/edit.js +++ b/scripts/system/edit.js @@ -210,7 +210,10 @@ var toolBar = (function () { var button = toolBar.addButton({ objectName: name, imageURL: imageUrl, - buttonState: 1, + imageOffOut: 1, + imageOffIn: 2, + imageOnOut: 0, + imageOnIn: 2, alpha: 0.9, visible: true });