-
Bug
-
Resolution: Duplicate
-
P3
-
None
-
1.1.6
-
sparc
-
solaris_2.5.1
Name: mf23781 Date: 09/10/98
Using the following testcase
import java.awt.*;
public class ScrollPaneError extends Frame
{
public ScrollPaneError() {
super("ScrollPaneError Example");
ScrollPane scroller = new ScrollPane();
add("Center", scroller);
show();
}
public static void main(String args[]) {
ScrollPaneError test = new ScrollPaneError();
test.show();
}
}
Produces the following warnings.
$ java ScrollPaneError
Warning:
Name: VertScrollBar
Class: XmScrollBar
The scrollbar page increment is less than 1.
Warning:
Name: HorScrollBar
Class: XmScrollBar
The scrollbar page increment is less than 1.
This problem seems to occur on all Unix machines and on all
versions of Java (Tested on 1.1.4, 1.1.6 and 1.2.)
======================================================================
- duplicates
-
JDK-4084766 ScrollPane isn't packed correctly in frame with menubar
-
- Closed
-