You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@directory.apache.org by pa...@apache.org on 2008/05/21 20:27:07 UTC

svn commit: r658800 - /directory/studio/trunk/apacheds-configuration/src/main/java/org/apache/directory/studio/apacheds/configuration/editor/v152/AuthenticationPage.java

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() );