From 88d0aa373709aef89fc2ac1c7d431fe10be633fc Mon Sep 17 00:00:00 2001 From: SamGondelman Date: Tue, 5 Jul 2016 13:46:42 -0700 Subject: [PATCH] removed showButtonDown, which didn't exist --- scripts/system/directory.js | 3 +-- scripts/system/libraries/toolBars.js | 2 -- 2 files changed, 1 insertion(+), 4 deletions(-) diff --git a/scripts/system/directory.js b/scripts/system/directory.js index 2eae4fa9cf..ac65615a68 100644 --- a/scripts/system/directory.js +++ b/scripts/system/directory.js @@ -73,8 +73,7 @@ var toolBar = (function() { width: toolWidth, height: toolHeight, alpha: 0.9, - visible: true, - showButtonDown: true + visible: true }); toolBar.showTool(browseDirectoryButton, true); diff --git a/scripts/system/libraries/toolBars.js b/scripts/system/libraries/toolBars.js index 5a84bf9027..e49f8c4004 100644 --- a/scripts/system/libraries/toolBars.js +++ b/scripts/system/libraries/toolBars.js @@ -130,8 +130,6 @@ Tool = function(properties, selectable, selected) { // selectable and selected a if (update) { if (selectable) { this.toggle(); - } else if (properties.showButtonDown) { - this.buttonDown(true); } } return true;