# suppress inspection "UnusedProperty"
GRADLE.system.in.process=true
# suppress inspection "UnusedProperty"
-GRADLE.system.in.process.description=Whether IDEA should use 'in-process' mode for interaction with gradle api
\ No newline at end of file
+GRADLE.system.in.process.description=Whether IDEA should use 'in-process' mode for interaction with gradle api
+
+grails_griffon.view=true
\ No newline at end of file
import com.intellij.openapi.project.DumbAware;
import com.intellij.openapi.project.Project;
import com.intellij.openapi.util.Condition;
+import com.intellij.openapi.util.registry.Registry;
import com.intellij.openapi.vfs.VirtualFile;
import com.intellij.openapi.wm.ToolWindow;
import com.intellij.openapi.wm.ToolWindowFactory;
}
public boolean value(Project project) {
+ if (!Registry.is("grails_griffon.view", true)) return false;
+
return MvcModuleStructureUtil.hasModulesWithSupport(project, myFramework);
}