mirror of
https://github.com/JFormDesigner/FlatLaf.git
synced 2025-12-08 06:50:56 +03:00
Compare commits
3 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
cf364c1264 | ||
|
|
a997820bb6 | ||
|
|
b8fabd59c0 |
12
CHANGELOG.md
12
CHANGELOG.md
@@ -1,12 +1,20 @@
|
|||||||
FlatLaf Change Log
|
FlatLaf Change Log
|
||||||
==================
|
==================
|
||||||
|
|
||||||
|
## 3.2.5
|
||||||
|
|
||||||
|
#### Fixed bugs
|
||||||
|
|
||||||
|
- Popup: Fixed NPE if popup invoker is `null` on Windows 10. (issue #753;
|
||||||
|
regression in 3.2.1 in fix for #626)
|
||||||
|
|
||||||
|
|
||||||
## 3.2.4
|
## 3.2.4
|
||||||
|
|
||||||
#### Fixed bugs
|
#### Fixed bugs
|
||||||
|
|
||||||
- Popup: Fixed potential NPE in (unusual) case that the popup invoker is `null`
|
- Popup: Fixed NPE if popup invoker is `null` on Linux with Wayland and Java 21.
|
||||||
(only on Linux with Wayland and Java 21; regression in 3.2.3). (issue #752)
|
(issue #752; regression in 3.2.3)
|
||||||
|
|
||||||
|
|
||||||
## 3.2.3
|
## 3.2.3
|
||||||
|
|||||||
@@ -397,6 +397,9 @@ public class FlatPopupFactory
|
|||||||
}
|
}
|
||||||
|
|
||||||
private static boolean overlapsHeavyWeightComponent( Component owner, Component contents, int x, int y ) {
|
private static boolean overlapsHeavyWeightComponent( Component owner, Component contents, int x, int y ) {
|
||||||
|
if( owner == null )
|
||||||
|
return false;
|
||||||
|
|
||||||
Window window = SwingUtilities.getWindowAncestor( owner );
|
Window window = SwingUtilities.getWindowAncestor( owner );
|
||||||
if( window == null )
|
if( window == null )
|
||||||
return false;
|
return false;
|
||||||
|
|||||||
@@ -14,7 +14,7 @@
|
|||||||
# limitations under the License.
|
# limitations under the License.
|
||||||
#
|
#
|
||||||
|
|
||||||
flatlaf.releaseVersion = 3.2.4
|
flatlaf.releaseVersion = 3.2.5
|
||||||
flatlaf.developmentVersion = 3.3-SNAPSHOT
|
flatlaf.developmentVersion = 3.3-SNAPSHOT
|
||||||
|
|
||||||
org.gradle.parallel = true
|
org.gradle.parallel = true
|
||||||
|
|||||||
Reference in New Issue
Block a user