mirror of
https://github.com/JFormDesigner/FlatLaf.git
synced 2025-12-06 22:10:54 +03:00
Compare commits
2 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
97d290795e | ||
|
|
2a237ff5fc |
@@ -1,6 +1,14 @@
|
|||||||
FlatLaf Change Log
|
FlatLaf Change Log
|
||||||
==================
|
==================
|
||||||
|
|
||||||
|
## 3.2.4
|
||||||
|
|
||||||
|
#### Fixed bugs
|
||||||
|
|
||||||
|
- Popup: Fixed potential NPE in (unusual) case that the popup invoker is `null`
|
||||||
|
(only on Linux with Wayland and Java 21; regression in 3.2.3). (issue #752)
|
||||||
|
|
||||||
|
|
||||||
## 3.2.3
|
## 3.2.3
|
||||||
|
|
||||||
#### Fixed bugs
|
#### Fixed bugs
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
#Signature file v4.1
|
#Signature file v4.1
|
||||||
#Version 3.2.3
|
#Version 3.2.4
|
||||||
|
|
||||||
CLSS public abstract interface com.formdev.flatlaf.FlatClientProperties
|
CLSS public abstract interface com.formdev.flatlaf.FlatClientProperties
|
||||||
fld public final static java.lang.String BUTTON_TYPE = "JButton.buttonType"
|
fld public final static java.lang.String BUTTON_TYPE = "JButton.buttonType"
|
||||||
|
|||||||
@@ -438,7 +438,7 @@ public class FlatPopupFactory
|
|||||||
*/
|
*/
|
||||||
private static void fixLinuxWaylandJava21focusIssue( Component owner ) {
|
private static void fixLinuxWaylandJava21focusIssue( Component owner ) {
|
||||||
// only necessary on Linux when running in Java 21+
|
// only necessary on Linux when running in Java 21+
|
||||||
if( !SystemInfo.isLinux || SystemInfo.javaVersion < SystemInfo.toVersion( 21, 0, 0, 0 ) )
|
if( owner == null || !SystemInfo.isLinux || SystemInfo.javaVersion < SystemInfo.toVersion( 21, 0, 0, 0 ) )
|
||||||
return;
|
return;
|
||||||
|
|
||||||
// get window
|
// get window
|
||||||
|
|||||||
@@ -14,7 +14,7 @@
|
|||||||
# limitations under the License.
|
# limitations under the License.
|
||||||
#
|
#
|
||||||
|
|
||||||
flatlaf.releaseVersion = 3.2.3
|
flatlaf.releaseVersion = 3.2.4
|
||||||
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