Return-Path: Delivered-To: apmail-directory-commits-archive@www.apache.org Received: (qmail 26526 invoked from network); 21 May 2008 14:49:23 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.2) by minotaur.apache.org with SMTP; 21 May 2008 14:49:23 -0000 Received: (qmail 40689 invoked by uid 500); 21 May 2008 14:49:24 -0000 Delivered-To: apmail-directory-commits-archive@directory.apache.org Received: (qmail 40648 invoked by uid 500); 21 May 2008 14:49:24 -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 40639 invoked by uid 99); 21 May 2008 14:49:24 -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 07:49:24 -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 14:48:38 +0000 Received: by eris.apache.org (Postfix, from userid 65534) id 27254238896D; Wed, 21 May 2008 07:49:00 -0700 (PDT) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r658719 - /directory/studio/trunk/apacheds-configuration/src/main/java/org/apache/directory/studio/apacheds/configuration/editor/v152/AuthenticationPage.java Date: Wed, 21 May 2008 14:49:00 -0000 To: commits@directory.apache.org From: pamarcelot@apache.org X-Mailer: svnmailer-1.0.8 Message-Id: <20080521144900.27254238896D@eris.apache.org> X-Virus-Checked: Checked by ClamAV on apache.org Author: pamarcelot Date: Wed May 21 07:48:59 2008 New Revision: 658719 URL: http://svn.apache.org/viewvc?rev=658719&view=rev Log: Fixed wisgets size on Windows. 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=658719&r1=658718&r2=658719&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 07:48:59 2008 @@ -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 = 76; + gd.heightHint = 50; 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 = 76; + gd.heightHint = 50; 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 = 82; + gd.heightHint = 60; saslRealmsTable.setLayoutData( gd ); saslRealmsTableViewer = new CheckboxTableViewer( saslRealmsTable ); saslRealmsTableViewer.setContentProvider( new ArrayContentProvider() );