Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSzymon Brandys2009-03-17 09:21:49 +0000
committerSzymon Brandys2009-03-17 09:21:49 +0000
commit1f711afb8dcd6a8e469feea2fc898ace59240fbf (patch)
tree834327b868e5ab887762a3ef713def2cc43292c3 /bundles/org.eclipse.ui.net
parenteed9c3375ebd5c64313f2a6e60532763de39fe50 (diff)
downloadeclipse.platform.team-1f711afb8dcd6a8e469feea2fc898ace59240fbf.tar.gz
eclipse.platform.team-1f711afb8dcd6a8e469feea2fc898ace59240fbf.tar.xz
eclipse.platform.team-1f711afb8dcd6a8e469feea2fc898ace59240fbf.zip
Bug 268355 - [Net] checkboxes cut off in Network Connections preference page
Diffstat (limited to 'bundles/org.eclipse.ui.net')
-rw-r--r--bundles/org.eclipse.ui.net/src/org/eclipse/ui/internal/net/NonProxyHostsComposite.java4
-rw-r--r--bundles/org.eclipse.ui.net/src/org/eclipse/ui/internal/net/ProxyEntriesComposite.java4
2 files changed, 4 insertions, 4 deletions
diff --git a/bundles/org.eclipse.ui.net/src/org/eclipse/ui/internal/net/NonProxyHostsComposite.java b/bundles/org.eclipse.ui.net/src/org/eclipse/ui/internal/net/NonProxyHostsComposite.java
index 69b4c1fc9..780bbddaa 100644
--- a/bundles/org.eclipse.ui.net/src/org/eclipse/ui/internal/net/NonProxyHostsComposite.java
+++ b/bundles/org.eclipse.ui.net/src/org/eclipse/ui/internal/net/NonProxyHostsComposite.java
@@ -1,5 +1,5 @@
/*******************************************************************************
- * Copyright (c) 2005, 2008 IBM Corporation and others.
+ * Copyright (c) 2005, 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
@@ -88,7 +88,7 @@ public class NonProxyHostsComposite extends Composite {
hostsViewer.setLabelProvider(labelProvider);
TableLayout tableLayout = new TableLayout();
- tableLayout.addColumnData(new ColumnPixelData(18));
+ tableLayout.addColumnData(new ColumnPixelData(24));
tableLayout.addColumnData(new ColumnWeightData(50, 50, true));
tableLayout.addColumnData(new ColumnWeightData(50, 50, true));
hostsTable.setLayout(tableLayout);
diff --git a/bundles/org.eclipse.ui.net/src/org/eclipse/ui/internal/net/ProxyEntriesComposite.java b/bundles/org.eclipse.ui.net/src/org/eclipse/ui/internal/net/ProxyEntriesComposite.java
index 0bcf2225f..a6cfdcdcb 100644
--- a/bundles/org.eclipse.ui.net/src/org/eclipse/ui/internal/net/ProxyEntriesComposite.java
+++ b/bundles/org.eclipse.ui.net/src/org/eclipse/ui/internal/net/ProxyEntriesComposite.java
@@ -1,5 +1,5 @@
/*******************************************************************************
- * Copyright (c) 2008 IBM Corporation and others.
+ * Copyright (c) 2008, 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
@@ -80,7 +80,7 @@ public class ProxyEntriesComposite extends Composite {
entriesViewer.setLabelProvider(labelProvider);
TableLayout tableLayout = new TableLayout();
- tableLayout.addColumnData(new ColumnPixelData(18));
+ tableLayout.addColumnData(new ColumnPixelData(24));
tableLayout.addColumnData(new ColumnWeightData(20, 50, true));
tableLayout.addColumnData(new ColumnWeightData(50, 50, true));
tableLayout.addColumnData(new ColumnWeightData(20, 50, true));

Back to the top