Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorChris Goldthorpe2009-03-20 19:37:51 +0000
committerChris Goldthorpe2009-03-20 19:37:51 +0000
commit1b2f7518f52a1bccafc72dc0f080bc41dfe2272c (patch)
tree7ed80b0cf034415f1de8f4ce8c2b11ba3c9e930c
parent80ea85111038b9a81d5cd18284545477a983f169 (diff)
downloadeclipse.platform.ua-1b2f7518f52a1bccafc72dc0f080bc41dfe2272c.tar.gz
eclipse.platform.ua-1b2f7518f52a1bccafc72dc0f080bc41dfe2272c.tar.xz
eclipse.platform.ua-1b2f7518f52a1bccafc72dc0f080bc41dfe2272c.zip
Add border to theme previewv20090320
-rw-r--r--org.eclipse.ui.intro.universal/src/org/eclipse/ui/internal/intro/universal/CustomizationContentsArea.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/org.eclipse.ui.intro.universal/src/org/eclipse/ui/internal/intro/universal/CustomizationContentsArea.java b/org.eclipse.ui.intro.universal/src/org/eclipse/ui/internal/intro/universal/CustomizationContentsArea.java
index 2f078df5f..ac0e3baff 100644
--- a/org.eclipse.ui.intro.universal/src/org/eclipse/ui/internal/intro/universal/CustomizationContentsArea.java
+++ b/org.eclipse.ui.intro.universal/src/org/eclipse/ui/internal/intro/universal/CustomizationContentsArea.java
@@ -1,5 +1,5 @@
/*******************************************************************************
- * Copyright (c) 2006, 2008 IBM Corporation and others.
+ * Copyright (c) 2006, 2009 IBM Corporation and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
@@ -861,7 +861,7 @@ public class CustomizationContentsArea {
loadThemes();
Label previewLabel = new Label(rightColumn, SWT.NULL);
previewLabel.setText(Messages.WelcomeCustomizationPreferencePage_preview);
- themePreview = new Canvas(rightColumn, SWT.NULL);
+ themePreview = new Canvas(rightColumn, SWT.BORDER);
gd = new GridData();
gd.widthHint = 160+20;
gd.heightHint = 120+20;

Back to the top