Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDavid Dykstal2008-05-14 13:35:31 +0000
committerDavid Dykstal2008-05-14 13:35:31 +0000
commita2d0b8ea7b008254dc908c6c96b1b8bfaa1b6958 (patch)
treeb8e8d759b451a09d4a5bb5f6031d9503ff9adb23
parent4ebec88d7a7f9cbfdcda4da80a34809278c44429 (diff)
downloadorg.eclipse.tm-a2d0b8ea7b008254dc908c6c96b1b8bfaa1b6958.tar.gz
org.eclipse.tm-a2d0b8ea7b008254dc908c6c96b1b8bfaa1b6958.tar.xz
org.eclipse.tm-a2d0b8ea7b008254dc908c6c96b1b8bfaa1b6958.zip
[231913] TVT34:TCT208: hu: 10.002520 - Certificate Properties Panel - Truncation
https://bugs.eclipse.org/bugs/show_bug.cgi?id=231913
-rw-r--r--rse/plugins/org.eclipse.rse.dstore.security/src/org/eclipse/rse/internal/dstore/security/widgets/CertificatePropertiesForm.java6
1 files changed, 3 insertions, 3 deletions
diff --git a/rse/plugins/org.eclipse.rse.dstore.security/src/org/eclipse/rse/internal/dstore/security/widgets/CertificatePropertiesForm.java b/rse/plugins/org.eclipse.rse.dstore.security/src/org/eclipse/rse/internal/dstore/security/widgets/CertificatePropertiesForm.java
index 51dd81b3a..a57bb7275 100644
--- a/rse/plugins/org.eclipse.rse.dstore.security/src/org/eclipse/rse/internal/dstore/security/widgets/CertificatePropertiesForm.java
+++ b/rse/plugins/org.eclipse.rse.dstore.security/src/org/eclipse/rse/internal/dstore/security/widgets/CertificatePropertiesForm.java
@@ -1,5 +1,5 @@
/*******************************************************************************
- * Copyright (c) 2006, 2007 IBM Corporation and others.
+ * Copyright (c) 2006, 2008 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
@@ -12,7 +12,7 @@
* Emily Bruner, Mazen Faraj, Adrian Storisteanu, Li Ding, and Kent Hawley.
*
* Contributors:
- * {Name} (company) - description of contribution.
+ * David Dykstal (IBM) - [231913] increasing width of form to accomodate translation
*******************************************************************************/
package org.eclipse.rse.internal.dstore.security.widgets;
@@ -189,7 +189,7 @@ public class CertificatePropertiesForm extends SystemBaseForm
Composite content = new Composite(parent, SWT.NONE);
GridLayout layout = new GridLayout();
GridData data = GridUtil.createFill();
- data.widthHint = 450;
+ data.widthHint = 600;
//data.heightHint = 300;
layout.numColumns = 2;
content.setLayout(layout);

Back to the top