From f254a51d592dd0cd542d00836c85430aec8fd290 Mon Sep 17 00:00:00 2001 From: Lucien Greathouse Date: Wed, 16 Jan 2019 00:01:40 -0800 Subject: [PATCH] Remove unused config button --- plugin/src/Components/App.lua | 10 ---------- 1 file changed, 10 deletions(-) diff --git a/plugin/src/Components/App.lua b/plugin/src/Components/App.lua index 2b99c764..913165d5 100644 --- a/plugin/src/Components/App.lua +++ b/plugin/src/Components/App.lua @@ -71,7 +71,6 @@ function App:init() }) self.connectButton = nil - self.configButton = nil self.currentSession = nil self.displayedVersion = DevSettings:isEnabled() @@ -167,15 +166,6 @@ function App:didMount() }) end end) - - self.configButton = toolbar:CreateButton( - "Configure", - "Configure the Rojo plugin", - Assets.Configure) - self.configButton.ClickableWhenViewportHidden = false - self.configButton.Click:Connect(function() - self.configButton:SetActive(false) - end) end function App:didUpdate()