From: Marc-Andre Laperle Date: Wed, 6 Nov 2013 22:50:50 +0000 (-0500) Subject: tmf: Fix display of title in the SelectSupplementaryResources dialog X-Git-Url: http://drtracing.org/?a=commitdiff_plain;h=c30c5cbb0ac943b37a2f86928e364aa0a4d08147;p=deliverable%2Ftracecompass.git tmf: Fix display of title in the SelectSupplementaryResources dialog Change-Id: I659333998e5a22da8aea35741675f6d12c666388 Signed-off-by: Marc-Andre Laperle Reviewed-on: https://git.eclipse.org/r/18157 Tested-by: Hudson CI Reviewed-by: Bernd Hufmann IP-Clean: Bernd Hufmann Tested-by: Bernd Hufmann --- diff --git a/org.eclipse.linuxtools.tmf.ui/src/org/eclipse/linuxtools/internal/tmf/ui/project/dialogs/SelectSupplementaryResourcesDialog.java b/org.eclipse.linuxtools.tmf.ui/src/org/eclipse/linuxtools/internal/tmf/ui/project/dialogs/SelectSupplementaryResourcesDialog.java index 622d817e61..4357da8dd8 100644 --- a/org.eclipse.linuxtools.tmf.ui/src/org/eclipse/linuxtools/internal/tmf/ui/project/dialogs/SelectSupplementaryResourcesDialog.java +++ b/org.eclipse.linuxtools.tmf.ui/src/org/eclipse/linuxtools/internal/tmf/ui/project/dialogs/SelectSupplementaryResourcesDialog.java @@ -68,7 +68,7 @@ public class SelectSupplementaryResourcesDialog extends Dialog { public SelectSupplementaryResourcesDialog(Shell shell, IResource[] resources) { super(shell); fAvailableResources = Arrays.copyOf(resources, resources.length); - setShellStyle(SWT.RESIZE); + setShellStyle(SWT.RESIZE | getShellStyle()); } // ------------------------------------------------------------------------