Details
-
Type:
Bug
-
Status: Resolved
-
Priority:
P2
-
Resolution: Fixed
-
Affects Version/s: 12
-
Fix Version/s: 12
-
Component/s: client-libs
-
Subcomponent:
-
Resolved In Build:b28
-
CPU:x86
-
OS:os_x
Backports
Issue | Fix Version | Assignee | Priority | Status | Resolution | Resolved In Build |
---|---|---|---|---|---|---|
JDK-8217282 | 13 | Manajit Halder | P2 | Resolved | Fixed | b05 |
JDK-8217552 | 12.0.1 | Manajit Halder | P2 | Resolved | Fixed | b04 |
Description
Double click on title bar not working after sometime for Frame with extended state set to MAXIMIZED_BOTH. The issue is not observed all the times.
Issue is observed on Mac OS 10.13.6 with JDK 12 b23.
Code to reproduce the issue:
import java.awt.Frame;
import java.awt.Rectangle;
public class TitleBarDoubleClick {
public static void main(String[] args) {
Frame f = new Frame();
f.setSize(300,300);
f.setVisible(true);
f.setMaximizedBounds(new Rectangle(100,100,100,100));
f.setExtendedState(Frame.MAXIMIZED_BOTH);
}
}
Issue is observed on Mac OS 10.13.6 with JDK 12 b23.
Code to reproduce the issue:
import java.awt.Frame;
import java.awt.Rectangle;
public class TitleBarDoubleClick {
public static void main(String[] args) {
Frame f = new Frame();
f.setSize(300,300);
f.setVisible(true);
f.setMaximizedBounds(new Rectangle(100,100,100,100));
f.setExtendedState(Frame.MAXIMIZED_BOTH);
}
}
Attachments
Issue Links
- backported by
-
JDK-8217282 Double click on titlebar not working for Frame with extended state set to MAXIMIZED_BOTH
-
- Resolved
-
-
JDK-8217552 Double click on titlebar not working for Frame with extended state set to MAXIMIZED_BOTH
-
- Resolved
-
- relates to
-
JDK-8209123 [Macosx] Maximized frame (frame state set to MAXIMIZED_BOTH using setExtendedState) is resizable on Mac but not on Windows and Ubuntu
-
- Resolved
-