You are viewing a plain text version of this content. The canonical link for it is here.
Posted to fop-dev@xmlgraphics.apache.org by "Jan Tošovský (JIRA)" <ji...@apache.org> on 2015/07/18 19:31:04 UTC

[jira] [Created] (FOP-2501) Missing support for border 'none'

Jan Tošovský created FOP-2501:
---------------------------------

             Summary: Missing support for border 'none'
                 Key: FOP-2501
                 URL: https://issues.apache.org/jira/browse/FOP-2501
             Project: FOP
          Issue Type: Bug
          Components: renderer/pdf
    Affects Versions: trunk
            Reporter: Jan Tošovský
            Priority: Minor


drawBorderLine2 method in PDFGraphicsPainter.java doesn't check for 'none' value so this border style is rendered using a default 'solid' style. The fix is quite straightforward:
...
+case Constants.EN_NONE:    
  case Constants.EN_HIDDEN:
        break;
...




--
This message was sent by Atlassian JIRA
(v6.3.4#6332)