We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2b3a2b0 commit 5434494Copy full SHA for 5434494
1 file changed
src/linters/windows/ViveLayersLinter.cpp
@@ -43,6 +43,9 @@ class ViveLayersLinter final : public Linter {
43
44
std::vector<std::shared_ptr<LintError>> ret;
45
for (const auto& [layer, details]: layers) {
46
+ if (!layer.IsEnabled()) {
47
+ continue;
48
+ }
49
if (!LayerNames.contains(details.mName)) {
50
continue;
51
}
0 commit comments