https://issues.apache.org/bugzilla/show_bug.cgi?id=46033

Wayne Holder <[email protected]> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|REOPENED                    |RESOLVED
         Resolution|                            |FIXED

--- Comment #4 from Wayne Holder <[email protected]> 2010-06-15 16:27:55 EDT ---
I finally tracked down what was going on.  My test code was making a called to
RichtextRun.setBullet(false) on the text run in the table.  This seems to
disable the font settings.  The offending code is shown commented out below.

  TableCell cell = table.getCell(i, j);
  cell.setText(data[i][j]);
  RichTextRun rt = cell.getTextRun().getRichTextRuns()[0];
  rt.setFontName("Tahoma");
  rt.setFontSize(10);
  //rt.setBullet(false);
  cell.setVerticalAlignment(TextBox.AnchorMiddle);
  cell.setHorizontalAlignment(TextBox.AlignCenter);

I'm not sure if this is correct behavior, or not, but I can now workaround the
issue.

Wayne

-- 
Configure bugmail: https://issues.apache.org/bugzilla/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug.

---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to