From 8d021926b3cd1f9565ff01b604c57ab13cbda476 Mon Sep 17 00:00:00 2001 From: Bruno Sinou Date: Wed, 26 Jan 2011 16:19:40 +0000 Subject: [PATCH] small changes on the genreric query form git-svn-id: https://svn.argeo.org/commons/trunk@4078 4cfe0d0a-d680-48aa-b62c-e0a02a3f76cc --- .../eclipse/ui/jcr/editors/AbstractJcrQueryEditor.java | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/eclipse/plugins/org.argeo.eclipse.ui.jcr/src/main/java/org/argeo/eclipse/ui/jcr/editors/AbstractJcrQueryEditor.java b/eclipse/plugins/org.argeo.eclipse.ui.jcr/src/main/java/org/argeo/eclipse/ui/jcr/editors/AbstractJcrQueryEditor.java index 1629ada8b..986d4b829 100644 --- a/eclipse/plugins/org.argeo.eclipse.ui.jcr/src/main/java/org/argeo/eclipse/ui/jcr/editors/AbstractJcrQueryEditor.java +++ b/eclipse/plugins/org.argeo.eclipse.ui.jcr/src/main/java/org/argeo/eclipse/ui/jcr/editors/AbstractJcrQueryEditor.java @@ -59,11 +59,13 @@ public abstract class AbstractJcrQueryEditor extends EditorPart { parent.setLayout(new FillLayout()); SashForm sashForm = new SashForm(parent, SWT.VERTICAL); - sashForm.setSashWidth(2); + sashForm.setSashWidth(4); sashForm.setLayout(new FillLayout()); Composite top = new Composite(sashForm, SWT.NONE); - top.setLayout(new GridLayout(1, false)); + GridLayout gl = new GridLayout(1, false); + top.setLayout(gl); + // Device device = Display.getCurrent(); // Color red = new Color(device, 255, 0, 0); // top.setBackground(red); -- 2.30.2