-
Bug
-
Resolution: Not an Issue
-
P4
-
None
-
5.0
-
x86
-
windows_xp
Steps to reproduce the defect.(reproducible only in Windows xp)
1.Create a File dialog
2.try to resize the filedialog by dragging the frame at bottom right corner
Defect: The Buttons "My Documents" "Desktop" etc. starts flickering
Another Observation: when the fileDialog is opened by "My Network places" button
is partially displayed.
run the following test to reproduce the defect.
import java.awt.*;
class FrameTest
{
public void test ()
{ Frame f=new Frame("TestFrame");
f.setSize(300,300);
FileDialog fd = new FileDialog(f, "TestFileDialog");
f.setVisible(true);
fd.setVisible(true);
}
public static void main(String args[])
{
FrameTest ft=new FrameTest();
ft.test();
}
}
1.Create a File dialog
2.try to resize the filedialog by dragging the frame at bottom right corner
Defect: The Buttons "My Documents" "Desktop" etc. starts flickering
Another Observation: when the fileDialog is opened by "My Network places" button
is partially displayed.
run the following test to reproduce the defect.
import java.awt.*;
class FrameTest
{
public void test ()
{ Frame f=new Frame("TestFrame");
f.setSize(300,300);
FileDialog fd = new FileDialog(f, "TestFileDialog");
f.setVisible(true);
fd.setVisible(true);
}
public static void main(String args[])
{
FrameTest ft=new FrameTest();
ft.test();
}
}
- relates to
-
JDK-6517021 AWT versus Swing: Window flickering when a TextArea is dragged
-
- Closed
-