Remove unused config button

This commit is contained in:
Lucien Greathouse
2019-01-16 00:01:40 -08:00
parent 99bbe58255
commit f254a51d59

View File

@@ -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()