From 2f5c83d665b98695232f7115fa000da94b9fadf5 Mon Sep 17 00:00:00 2001 From: Tim Mickel Date: Mon, 11 Jan 2016 14:23:51 -0500 Subject: [PATCH] Fixing shareEnabled setting --- src/editor/ui/UI.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/editor/ui/UI.js b/src/editor/ui/UI.js index a332995..7199e7a 100644 --- a/src/editor/ui/UI.js +++ b/src/editor/ui/UI.js @@ -93,7 +93,7 @@ UI.addProjectInfo = function () { var author = newHTML('div', 'infolabel', staticinfo); author.setAttribute('id', 'deviceName'); - if (!Settings.shareEnabled) { + if (Settings.shareEnabled) { // Sharing var shareButtons = newHTML('div', 'infoboxShareButtons', infobox);