From c30c5cbb0ac943b37a2f86928e364aa0a4d08147 Mon Sep 17 00:00:00 2001 From: Marc-Andre Laperle Date: Wed, 6 Nov 2013 17:50:50 -0500 Subject: [PATCH] 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 --- .../ui/project/dialogs/SelectSupplementaryResourcesDialog.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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()); } // ------------------------------------------------------------------------ -- 2.34.1