You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@uima.apache.org by "Tong Fin (JIRA)" <ui...@incubator.apache.org> on 2008/03/25 17:39:24 UTC

[jira] Resolved: (UIMA-928) [DDE] For Linux platform, Deployment Descriptor Editor's table border is not visible

     [ https://issues.apache.org/jira/browse/UIMA-928?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Tong Fin resolved UIMA-928.
---------------------------

    Resolution: Fixed

In Linux platform, the table border is made visible by the following fixes:
 -  If C is the parent composite that contains the table control, set the margin of width and height of the layout of C to have a few dots value (e.g., 2) instead of 0.
 - The following is an example:
     Composite c = toolkit.createComposite(section);
     GridLayout layout = new GridLayout(1, false);
     layout.marginHeight = 2;
     layout.marginWidth = 2;
     c.setLayout(layout);

> [DDE] For Linux platform, Deployment Descriptor Editor's table border is not visible
> ------------------------------------------------------------------------------------
>
>                 Key: UIMA-928
>                 URL: https://issues.apache.org/jira/browse/UIMA-928
>             Project: UIMA
>          Issue Type: Improvement
>          Components: Eclipse plugins
>    Affects Versions: 2.2.2S
>         Environment: Linux Redhat Enterprise Edition
>            Reporter: Tong Fin
>            Priority: Trivial
>             Fix For: 2.2.2S
>
>
> For Linux platform, the table border of the Deployment Descriptor Editor's is not visible.
> For Windows, it is displayed correctly

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.