From 6626f556520e0e16f2331466aa3b121c24b52cf2 Mon Sep 17 00:00:00 2001 From: Seth Alves Date: Mon, 8 Jan 2018 15:52:50 -0800 Subject: [PATCH] fix run script --- scripts/system/run.js | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/scripts/system/run.js b/scripts/system/run.js index 849e67e4ba..7940be600b 100644 --- a/scripts/system/run.js +++ b/scripts/system/run.js @@ -5,7 +5,7 @@ (function() { // BEGIN LOCAL_SCOPE var tablet = Tablet.getTablet("com.highfidelity.interface.tablet.system"); var button = tablet.addButton({ - icon: Script.resolvePath("run.svg"), + icon: Script.resolvePath("assets/images/icon-particles.svg"), text: "Run", sortOrder: 15 }); @@ -23,6 +23,5 @@ tablet.removeButton(button); } - button.clicked.connect(onClicked); -}) +}());