Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorrelves2006-09-26 16:31:09 +0000
committerrelves2006-09-26 16:31:09 +0000
commit7fc295432f6d7d98962dce2b08264c5ec5e434da (patch)
tree996a628dff86228681ab484f6d868ce25a5d5e31 /org.eclipse.mylyn.bugzilla.ui
parent3fd97dd67e28681cc2c25a194a0ab7d48ca24c15 (diff)
downloadorg.eclipse.mylyn.tasks-7fc295432f6d7d98962dce2b08264c5ec5e434da.tar.gz
org.eclipse.mylyn.tasks-7fc295432f6d7d98962dce2b08264c5ec5e434da.tar.xz
org.eclipse.mylyn.tasks-7fc295432f6d7d98962dce2b08264c5ec5e434da.zip
Completed: 153771: improve scheduling support for new repository tasks
https://bugs.eclipse.org/bugs/show_bug.cgi?id=153771
Diffstat (limited to 'org.eclipse.mylyn.bugzilla.ui')
-rw-r--r--org.eclipse.mylyn.bugzilla.ui/src/org/eclipse/mylyn/internal/bugzilla/ui/editor/NewBugEditor.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/org.eclipse.mylyn.bugzilla.ui/src/org/eclipse/mylyn/internal/bugzilla/ui/editor/NewBugEditor.java b/org.eclipse.mylyn.bugzilla.ui/src/org/eclipse/mylyn/internal/bugzilla/ui/editor/NewBugEditor.java
index 89b085b85..dfa01936c 100644
--- a/org.eclipse.mylyn.bugzilla.ui/src/org/eclipse/mylyn/internal/bugzilla/ui/editor/NewBugEditor.java
+++ b/org.eclipse.mylyn.bugzilla.ui/src/org/eclipse/mylyn/internal/bugzilla/ui/editor/NewBugEditor.java
@@ -196,7 +196,7 @@ public class NewBugEditor extends AbstractRepositoryTaskEditor {
section.setText("Personal Planning");
section.setLayout(new GridLayout());
section.setLayoutData(new GridData(GridData.FILL_HORIZONTAL));
- section.setExpanded(false);
+ section.setExpanded(true);
Composite sectionClient = toolkit.createComposite(section);
section.setClient(sectionClient);

Back to the top