-
Bug
-
Resolution: Fixed
-
P4
-
1.2.2
-
1.2.2
-
x86
-
linux
-
Not verified
Name: kaC94536 Date: 11/26/99
If you double click on the Scrollbar track ( not on the bubble but near it ),
you will see continuous bubble moving until it will reach the margin.
The specification says nothing about Scrollbar reaction on double click, but
such Scrollbar behavior on Linux differs from its behavior on Solaris.
----------------------------- test.java ------------------------
import java.awt.*;
public class test extends Frame {
static test testFrame = null;
public static void main( String[] argv ) {
testFrame= new test();
Scrollbar slider = new Scrollbar(Scrollbar.HORIZONTAL, 0, 0, 0, 2000);
testFrame.add(slider);
testFrame.setSize(600,100);
testFrame.setVisible(true);
}
}
======================================================================
======================================================================