Return-Path: Delivered-To: apmail-directory-commits-archive@www.apache.org Received: (qmail 13347 invoked from network); 21 May 2008 18:27:31 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.2) by minotaur.apache.org with SMTP; 21 May 2008 18:27:31 -0000 Received: (qmail 61879 invoked by uid 500); 21 May 2008 18:27:32 -0000 Delivered-To: apmail-directory-commits-archive@directory.apache.org Received: (qmail 61841 invoked by uid 500); 21 May 2008 18:27:32 -0000 Mailing-List: contact commits-help@directory.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@directory.apache.org Delivered-To: mailing list commits@directory.apache.org Received: (qmail 61832 invoked by uid 99); 21 May 2008 18:27:32 -0000 Received: from nike.apache.org (HELO nike.apache.org) (192.87.106.230) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 21 May 2008 11:27:32 -0700 X-ASF-Spam-Status: No, hits=-2000.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [140.211.11.4] (HELO eris.apache.org) (140.211.11.4) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 21 May 2008 18:26:46 +0000 Received: by eris.apache.org (Postfix, from userid 65534) id 2742B23889FF; Wed, 21 May 2008 11:27:08 -0700 (PDT) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r658800 - /directory/studio/trunk/apacheds-configuration/src/main/java/org/apache/directory/studio/apacheds/configuration/editor/v152/AuthenticationPage.java Date: Wed, 21 May 2008 18:27:07 -0000 To: commits@directory.apache.org From: pamarcelot@apache.org X-Mailer: svnmailer-1.0.8 Message-Id: <20080521182708.2742B23889FF@eris.apache.org> X-Virus-Checked: Checked by ClamAV on apache.org Author: pamarcelot Date: Wed May 21 11:27:07 2008 New Revision: 658800 URL: http://svn.apache.org/viewvc?rev=658800&view=rev Log: Fixed UI fields size on Linux. Modified: directory/studio/trunk/apacheds-configuration/src/main/java/org/apache/directory/studio/apacheds/configuration/editor/v152/AuthenticationPage.java Modified: directory/studio/trunk/apacheds-configuration/src/main/java/org/apache/directory/studio/apacheds/configuration/editor/v152/AuthenticationPage.java URL: http://svn.apache.org/viewvc/directory/studio/trunk/apacheds-configuration/src/main/java/org/apache/directory/studio/apacheds/configuration/editor/v152/AuthenticationPage.java?rev=658800&r1=658799&r2=658800&view=diff ============================================================================== --- directory/studio/trunk/apacheds-configuration/src/main/java/org/apache/directory/studio/apacheds/configuration/editor/v152/AuthenticationPage.java (original) +++ directory/studio/trunk/apacheds-configuration/src/main/java/org/apache/directory/studio/apacheds/configuration/editor/v152/AuthenticationPage.java Wed May 21 11:27:07 2008 @@ -68,7 +68,7 @@ */ public class AuthenticationPage extends FormPage implements SaveableFormPage { - /** The Page ID*/ + /** The Page ID */ public static final String ID = ServerConfigurationEditor.ID + ".V152.AuthenticationPage"; /** The Page Title */ @@ -156,7 +156,7 @@ // Supported Authentication Mechanisms Table Table supportedMechanismsTable = toolkit.createTable( client, SWT.CHECK ); GridData gd = new GridData( SWT.FILL, SWT.NONE, true, false, 1, 3 ); - gd.heightHint = 50; + gd.heightHint = 82; supportedMechanismsTable.setLayoutData( gd ); supportedMechanismsTableViewer = new CheckboxTableViewer( supportedMechanismsTable ); supportedMechanismsTableViewer.setContentProvider( new ArrayContentProvider() ); @@ -234,7 +234,7 @@ // SASL Quality Of Protection Table Table saslQualityOfProtectionTable = toolkit.createTable( client, SWT.CHECK ); GridData gd = new GridData( SWT.FILL, SWT.NONE, true, false, 1, 3 ); - gd.heightHint = 50; + gd.heightHint = 57; saslQualityOfProtectionTable.setLayoutData( gd ); saslQualityOfProtectionTableViewer = new CheckboxTableViewer( saslQualityOfProtectionTable ); saslQualityOfProtectionTableViewer.setContentProvider( new ArrayContentProvider() ); @@ -275,7 +275,7 @@ // SASL Realms Table Table saslRealmsTable = toolkit.createTable( client, SWT.NONE ); GridData gd = new GridData( SWT.FILL, SWT.NONE, true, false, 1, 3 ); - gd.heightHint = 60; + gd.heightHint = 82; saslRealmsTable.setLayoutData( gd ); saslRealmsTableViewer = new CheckboxTableViewer( saslRealmsTable ); saslRealmsTableViewer.setContentProvider( new ArrayContentProvider() );