Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorChris Goldthorpe2010-02-26 19:40:35 +0000
committerChris Goldthorpe2010-02-26 19:40:35 +0000
commit6ec21e39ea6fbd94f6db05585cff54f78503a637 (patch)
treefc41c9c46bade3e6c6f1081238803f20c1a47c79 /org.eclipse.help.base
parent9c44d0493c15d5ac862ca59f73f443e672113d57 (diff)
downloadeclipse.platform.ua-6ec21e39ea6fbd94f6db05585cff54f78503a637.tar.gz
eclipse.platform.ua-6ec21e39ea6fbd94f6db05585cff54f78503a637.tar.xz
eclipse.platform.ua-6ec21e39ea6fbd94f6db05585cff54f78503a637.zip
Fix bug which was causing topics to be hidden
Diffstat (limited to 'org.eclipse.help.base')
-rw-r--r--org.eclipse.help.base/src/org/eclipse/help/internal/base/scope/ScopeUtils.java1
1 files changed, 1 insertions, 0 deletions
diff --git a/org.eclipse.help.base/src/org/eclipse/help/internal/base/scope/ScopeUtils.java b/org.eclipse.help.base/src/org/eclipse/help/internal/base/scope/ScopeUtils.java
index b4e8d104b..8f0a7f21f 100644
--- a/org.eclipse.help.base/src/org/eclipse/help/internal/base/scope/ScopeUtils.java
+++ b/org.eclipse.help.base/src/org/eclipse/help/internal/base/scope/ScopeUtils.java
@@ -80,6 +80,7 @@ public class ScopeUtils {
for (int i = 0; i < topics.length; i++) {
if (showInTree(topics[i], scope) ||
(scope.isHierarchicalScope() && hasInScopeDescendent(topics[i], scope))) {
+ return true;
}
}
return false;

Back to the top