Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorrelves2007-01-19 23:01:02 +0000
committerrelves2007-01-19 23:01:02 +0000
commitb052e12243e449c3a59e56b0ff21cf71986c6ab3 (patch)
treed1f2c64a72bfe54638b0ef146c4ad2af2a602b95 /org.eclipse.mylyn.bugzilla.ui
parente0894c564c8b3514e3644ae4b3bf8f2d4303f234 (diff)
downloadorg.eclipse.mylyn.tasks-b052e12243e449c3a59e56b0ff21cf71986c6ab3.tar.gz
org.eclipse.mylyn.tasks-b052e12243e449c3a59e56b0ff21cf71986c6ab3.tar.xz
org.eclipse.mylyn.tasks-b052e12243e449c3a59e56b0ff21cf71986c6ab3.zip
REOPENED - bug 170684: Attributes section not expanding in some cases
https://bugs.eclipse.org/bugs/show_bug.cgi?id=170684
Diffstat (limited to 'org.eclipse.mylyn.bugzilla.ui')
-rw-r--r--org.eclipse.mylyn.bugzilla.ui/src/org/eclipse/mylyn/internal/bugzilla/ui/editor/BugzillaTaskEditor.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/org.eclipse.mylyn.bugzilla.ui/src/org/eclipse/mylyn/internal/bugzilla/ui/editor/BugzillaTaskEditor.java b/org.eclipse.mylyn.bugzilla.ui/src/org/eclipse/mylyn/internal/bugzilla/ui/editor/BugzillaTaskEditor.java
index 88b2409d1..d1dccee50 100644
--- a/org.eclipse.mylyn.bugzilla.ui/src/org/eclipse/mylyn/internal/bugzilla/ui/editor/BugzillaTaskEditor.java
+++ b/org.eclipse.mylyn.bugzilla.ui/src/org/eclipse/mylyn/internal/bugzilla/ui/editor/BugzillaTaskEditor.java
@@ -291,7 +291,7 @@ public class BugzillaTaskEditor extends AbstractRepositoryTaskEditor {
@Override
protected boolean hasVisibleAttributeChanges() {
- return super.hasAttributeChanges || this.hasCustomAttributeChanges();
+ return super.hasVisibleAttributeChanges() || this.hasCustomAttributeChanges();
}

Back to the top