Name: keC81026 Date: 04/03/99
HOME key on keypad does not work under Solaris in TextArea
to reproduce
1. compile and run TestCase.java
2. enter the text area
3. Press "HOME", notice, that it works
4. Press "HOME" on NumPad, under and note that it does not work
====================== TestCase.java ===================================
import java.awt.*;
class TestCase {
public static void main( String argv[] ) {
Frame f = new Frame();
f.setLayout( new BorderLayout() );
f.add(new TextArea("This is the test") );
f.pack();
f.resize( f.getPreferredSize() );
f.show();
}
}
=========================================================================
======================================================================
- duplicates
-
JDK-4215344 1.1.only Solaris home/end/pgup/pgdown keys don't work in TextArea or TextField
-
- Closed
-