-
Bug
-
Resolution: Duplicate
-
P4
-
None
-
1.3.0, 1.3.1, 1.3.1_01
-
x86
-
linux
Name: iaR10016 Date: 06/08/2000
JDK version:
java version "1.3.0beta"
Java(TM) 2 Runtime Environment, Standard Edition (build 1.3.0beta-b07)
Java HotSpot(TM) Client VM (build 1.3.0beta-b04, mixed mode)
Frame window of the following test example contains a JTabbedPane component with one tab.
To reproduce the effect the frame window need to be resized to the minimum height using mouse.
When the frame height becomes minimal, the tab relocates to the right.
The bug is reproduciable under Linux JDK 1.3 and Solaris JDK 1.3.
JCK 1.3 api interactive test api/javax_swing/interactive/JTabbedPaneTests.html#JTabbedPane
fails because of this reason.
-------------------------------------- test.java -----------------------------------------
import javax.swing.*;
import java.awt.Dimension;
public class test {
public static void main(String[] args) {
JFrame aFrame = new JFrame();
aFrame.setSize(new Dimension(500,150));
JTabbedPane aPane = new JTabbedPane(SwingConstants.LEFT);
aPane.addTab("I'm a JTabbedPane tab", new JPanel());
aFrame.getContentPane().add(aPane);
aFrame.setVisible(true);
}
}
--------------------------------------------------------------------------------------------
======================================================================
- duplicates
-
JDK-4303623 JTabbedPane: scrollable tab option
-
- Closed
-