-
Bug
-
Resolution: Fixed
-
P2
-
11, 13
-
b27
-
os_x
Issue | Fix Version | Assignee | Priority | Status | Resolution | Resolved In Build |
---|---|---|---|---|---|---|
JDK-8236335 | 15 | Sergey Bylokhov | P2 | Resolved | Fixed | team |
JDK-8245453 | 13.0.4 | Sergey Bylokhov | P2 | Resolved | Fixed | b02 |
JDK-8239401 | 11.0.8-oracle | Sergey Bylokhov | P2 | Closed | Fixed | b01 |
JDK-8241204 | 11.0.8 | Sergey Bylokhov | P2 | Resolved | Fixed | b01 |
Reproduced on openjdk 11 (and 13) with simple test application:
public static void main(String[] args) {
SwingUtilities.invokeLater(()->{
JFrame f = new JFrame();
f.setSize(300, 300);
f.setVisible(true);
SwingUtilities.invokeLater(()->{
FileDialog fd = new FileDialog(f, "test-fd", FileDialog.LOAD);
fd.setVisible(true);
});
});
}
Navigate to a window with file path input.
Click the field to reveal file chooser.
Type ~ to start go to folder feature.
Click and expand the suggestions list.
Click on one of the suggestions.
public static void main(String[] args) {
SwingUtilities.invokeLater(()->{
JFrame f = new JFrame();
f.setSize(300, 300);
f.setVisible(true);
SwingUtilities.invokeLater(()->{
FileDialog fd = new FileDialog(f, "test-fd", FileDialog.LOAD);
fd.setVisible(true);
});
});
}
Navigate to a window with file path input.
Click the field to reveal file chooser.
Type ~ to start go to folder feature.
Click and expand the suggestions list.
Click on one of the suggestions.
- backported by
-
JDK-8236335 [macos] Crash with use of native file dialog
- Resolved
-
JDK-8241204 [macos] Crash with use of native file dialog
- Resolved
-
JDK-8245453 [macos] Crash with use of native file dialog
- Resolved
-
JDK-8239401 [macos] Crash with use of native file dialog
- Closed
- relates to
-
JDK-8236545 Compilation error in mach5 java/awt/FileDialog/MacOSGoToFolderCrash.java
- Resolved
- links to
(1 links to)