Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorfbecker2009-07-21 05:18:05 +0000
committerfbecker2009-07-21 05:18:05 +0000
commit06037952d95fa5b780a96df8f6a89ea5bff805f6 (patch)
tree6303e774a05c418c80cccee9c9db3d66a2e0861a /org.eclipse.mylyn.bugzilla.ui
parent8d13cb8b8453a4764cbf6b8267733bbf7142776b (diff)
downloadorg.eclipse.mylyn.tasks-06037952d95fa5b780a96df8f6a89ea5bff805f6.tar.gz
org.eclipse.mylyn.tasks-06037952d95fa5b780a96df8f6a89ea5bff805f6.tar.xz
org.eclipse.mylyn.tasks-06037952d95fa5b780a96df8f6a89ea5bff805f6.zip
ASSIGNED - bug 283956: The filter values of the Component, Version and Milestone combo is not displayed at the attributes update
https://bugs.eclipse.org/bugs/show_bug.cgi?id=283956
Diffstat (limited to 'org.eclipse.mylyn.bugzilla.ui')
-rw-r--r--org.eclipse.mylyn.bugzilla.ui/src/org/eclipse/mylyn/internal/bugzilla/ui/search/BugzillaSearchPage.java6
1 files changed, 5 insertions, 1 deletions
diff --git a/org.eclipse.mylyn.bugzilla.ui/src/org/eclipse/mylyn/internal/bugzilla/ui/search/BugzillaSearchPage.java b/org.eclipse.mylyn.bugzilla.ui/src/org/eclipse/mylyn/internal/bugzilla/ui/search/BugzillaSearchPage.java
index bbc869cea..40a0f8c03 100644
--- a/org.eclipse.mylyn.bugzilla.ui/src/org/eclipse/mylyn/internal/bugzilla/ui/search/BugzillaSearchPage.java
+++ b/org.eclipse.mylyn.bugzilla.ui/src/org/eclipse/mylyn/internal/bugzilla/ui/search/BugzillaSearchPage.java
@@ -1824,6 +1824,10 @@ public class BugzillaSearchPage extends AbstractRepositoryQueryPage implements L
}
private void updateConfiguration(final boolean force) {
+ String[] selectedProducts = product.getSelection();
+ if (selectedProducts != null && selectedProducts.length == 0) {
+ selectedProducts = null;
+ }
if (getTaskRepository() != null) {
IRunnableWithProgress updateRunnable = new IRunnableWithProgress() {
public void run(IProgressMonitor monitor) throws InvocationTargetException, InterruptedException {
@@ -1893,7 +1897,7 @@ public class BugzillaSearchPage extends AbstractRepositoryQueryPage implements L
return;
}
- updateAttributesFromConfiguration(null);
+ updateAttributesFromConfiguration(selectedProducts);
}
}

Back to the top