From d2b8a2183c6469f7a95e148bd71af930a8ea8248 Mon Sep 17 00:00:00 2001 From: Tom van Dijck Date: Wed, 21 Jun 2017 17:28:56 -0700 Subject: [PATCH] Fix bug in 'action.isConfigurable' not checking for onWorkspace. --- src/base/action.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/base/action.lua b/src/base/action.lua index 45ae9505..710b5c69 100644 --- a/src/base/action.lua +++ b/src/base/action.lua @@ -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