Merge pull request #838 from Blizzard/fix-action

Fix bug in 'action.isConfigurable' not checking for onWorkspace.
This commit is contained in:
Tom van Dijck 2017-06-22 13:34:07 -07:00 committed by GitHub
commit 501466302f

View File

@ -194,7 +194,7 @@
if not self then
self = action.current() or {}
end
if self.onSolution or self.onsolution then
if self.onWorkspace or self.onSolution or self.onsolution then
return true
end
if self.onProject or self.onproject then