Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorfbecker2010-05-29 12:59:43 +0000
committerfbecker2010-05-29 12:59:43 +0000
commit045cd20b2148f20c0961c11d63340211dcd875b7 (patch)
tree2a5703867fcb4b96a13c7612779b9ab3b071f877 /org.eclipse.mylyn.bugzilla.ui
parentbb4ead8de1fa30c55f6c07e27835dd740fe9f522 (diff)
downloadorg.eclipse.mylyn.tasks-045cd20b2148f20c0961c11d63340211dcd875b7.tar.gz
org.eclipse.mylyn.tasks-045cd20b2148f20c0961c11d63340211dcd875b7.tar.xz
org.eclipse.mylyn.tasks-045cd20b2148f20c0961c11d63340211dcd875b7.zip
ASSIGNED - bug 305687: Bugzilla query dialog opens with wrong sizing
https://bugs.eclipse.org/bugs/show_bug.cgi?id=305687
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.java3
1 files changed, 2 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 c31378364..f64586f78 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
@@ -417,6 +417,7 @@ public class BugzillaSearchPage extends AbstractRepositoryQueryPage implements L
GridLayout layout = new GridLayout(4, false);
layout.marginHeight = 0;
layout.marginWidth = 0;
+ layout.marginRight = 5;
basicComposite.setLayout(layout);
GridData g = new GridData(GridData.FILL, GridData.FILL, true, true);
g.widthHint = 500;
@@ -437,7 +438,7 @@ public class BugzillaSearchPage extends AbstractRepositoryQueryPage implements L
}
createBasicComposite(basicComposite);
- moreOptionsExpandComposite = toolkit.createExpandableComposite(basicComposite, ExpandableComposite.COMPACT
+ moreOptionsExpandComposite = toolkit.createExpandableComposite(control, ExpandableComposite.COMPACT
| ExpandableComposite.TWISTIE | ExpandableComposite.TITLE_BAR);
moreOptionsExpandComposite.setFont(JFaceResources.getFontRegistry().getBold(JFaceResources.DIALOG_FONT));
moreOptionsExpandComposite.setBackground(null);

Back to the top