-
Bug
-
Resolution: Cannot Reproduce
-
P4
-
None
-
1.1.4, 1.1.5
-
x86
-
windows_95, windows_nt
Name: diC59631 Date: 12/05/97
import java.awt.*;
import com.sun.java.swing.*;
public class Test {
public static void main(String args[]) {
Frame f = new Frame();
JTextArea editor = new JTextArea("Test JTestArea -- scrollbars, page up/down");
JScrollPane scroller = new JScrollPane();
JViewport port = scroller.getViewport();
port.add(editor);
f.add(scroller);
f.setSize(300, 200);
f.show();
}
}
1. The above program comes up with a horizonal scroolbar.
2. Make the window wider, the scroll bar disappears. Fine.
3. Enter a line longer than the screen width, no scrollbar comes up.
4. Enter more lines to full the screen vertically, no scrollbar appears.
5. Resize the window in any way, proper scroolbar(s) will appear.
Scrollbars shouldn't wait for resizing to show up.
This is a problem with Swing 0.6.1. But NOT a problem with Swing 0.5.1.
(Review ID: 21361)
======================================================================