You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I read an html file from my jarfile and display it in an XHTMLPanel that is within an FSScrollPane. The right scroll bar obscures the rightmost part of the text.
The text was updated successfully, but these errors were encountered:
NOTE: this is in the init to a class that subclasses JFrame
``
XHTMLPanel pane = new XHTMLPanel();
if(helpUrl != null)
pane.setDocument(helpUrl.toString());
FSScrollPane scrollPane = new FSScrollPane(pane);
// Create an empty border with desired insets
// Tried to add a border that was inset the width of the vertical scrollbar, had zero effect
Border border = BorderFactory.createEmptyBorder(0, 0, 0, scrollPane.getVerticalScrollBar().getWidth()); // top, left, bottom, right
pane.setBorder(border);
add(scrollPane, BorderLayout.CENTER);
I read an html file from my jarfile and display it in an XHTMLPanel that is within an FSScrollPane. The right scroll bar obscures the rightmost part of the text.
The text was updated successfully, but these errors were encountered: