-
Bug
-
Resolution: Fixed
-
P2
-
s998u3, solaris_7u2, 1.1.4, 1.1.6
Issue | Fix Version | Assignee | Priority | Status | Resolution | Resolved In Build |
---|---|---|---|---|---|---|
JDK-2017300 | 1.2.0 | Robi Khan | P2 | Resolved | Fixed | 1.2fcs |
Name: paC48320 Date: 10/08/97
1. Exact steps to reproduce the problem.
Just compile the code below
2. Java SOURCE CODE that demonstrates the problem, if possible.
--------------------------------------------------
import java.awt.*;
import java.awt.event.*;
public class MyFrame
extends Frame
implements ActionListener
{
public MyFrame(boolean withMenu)
{
super("MyFrame");
MenuBar menubar;
Menu fileMenu;
MenuItem quit;
ScrollPane sp;
sp = new ScrollPane();
sp.add(new Label("Label in ScrollPane"));
this.setLayout(new BorderLayout());
this.add(sp, "Center");
this.add(new Label("Label in Frame"), "South");
if(withMenu)
{
// Create the menubar and file menu. Tell the frame about it.
menubar = new MenuBar();
fileMenu = new Menu("File");
quit = new MenuItem("Quit");
quit.addActionListener(this);
fileMenu.add(quit);
menubar.add(fileMenu);
this.setMenuBar(menubar);
}
}
public static void main(String argv[])
{
// Frame without menu, packs correctly
MyFrame f1 = new MyFrame(false);
f1.pack();
f1.show();
// Frame with menu, doesn't pack right
MyFrame f2 = new MyFrame(true);
f2.pack();
f2.show();
}
public void actionPerformed(ActionEvent e)
{
System.exit(0);
}
}
--------------------------------------------------
3. Exact text of any error message(s) that appeared.
Warning:
Name: VertScrollBar
Class: XmScrollBar
The specified slider size is less than 1
Warning:
Name: VertScrollBar
Class: XmScrollBar
The scrollbar page increment is less than 1.
Warning:
Name: HorScrollBar
Class: XmScrollBar
The specified slider size is less than 1
Warning:
Name: HorScrollBar
Class: XmScrollBar
The scrollbar page increment is less than 1.
4. Any trace information
none
5. Include additional configuration information that you think is
relevant to the problem.
Java running on SparcStation 4/110 with 64 MB RAM
SunOS 5.4 (Solaris 2.4)
======================================================================
- backported by
-
JDK-2017300 ScrollPane isn't packed correctly in frame with menubar
-
- Resolved
-
- duplicates
-
JDK-4172528 Get X warnings with scrollbars on ScrollPane
-
- Closed
-