From 78e3d781fc2d386d0f15a95ae289bde14c9a244e Mon Sep 17 00:00:00 2001 From: Karl Tauber Date: Wed, 12 Feb 2020 18:36:37 +0100 Subject: [PATCH] UI defaults: changed dump format of characters and updated dumps on Windows --- .../formdev/flatlaf/testing/uidefaults/UIDefaultsDump.java | 7 ++++++- .../testing/uidefaults/BasicLookAndFeel_1.8.0_202.txt | 2 +- .../flatlaf/testing/uidefaults/BasicLookAndFeel_10.0.2.txt | 2 +- .../flatlaf/testing/uidefaults/BasicLookAndFeel_11.0.2.txt | 2 +- .../flatlaf/testing/uidefaults/BasicLookAndFeel_12.0.2.txt | 2 +- .../flatlaf/testing/uidefaults/BasicLookAndFeel_13.0.2.txt | 2 +- .../flatlaf/testing/uidefaults/BasicLookAndFeel_9.0.4.txt | 2 +- .../flatlaf/testing/uidefaults/FlatDarkLaf_1.8.0_202.txt | 2 +- .../flatlaf/testing/uidefaults/FlatLightLaf_1.8.0_202.txt | 2 +- .../testing/uidefaults/MetalLookAndFeel_1.8.0_202.txt | 2 +- .../flatlaf/testing/uidefaults/MetalLookAndFeel_10.0.2.txt | 2 +- .../flatlaf/testing/uidefaults/MetalLookAndFeel_11.0.2.txt | 2 +- .../flatlaf/testing/uidefaults/MetalLookAndFeel_12.0.2.txt | 2 +- .../flatlaf/testing/uidefaults/MetalLookAndFeel_13.0.2.txt | 2 +- .../flatlaf/testing/uidefaults/MetalLookAndFeel_9.0.4.txt | 2 +- .../testing/uidefaults/WindowsLookAndFeel_1.8.0_202.txt | 2 +- .../testing/uidefaults/WindowsLookAndFeel_10.0.2.txt | 2 +- .../testing/uidefaults/WindowsLookAndFeel_11.0.2.txt | 2 +- .../testing/uidefaults/WindowsLookAndFeel_12.0.2.txt | 2 +- .../testing/uidefaults/WindowsLookAndFeel_13.0.2.txt | 2 +- .../testing/uidefaults/WindowsLookAndFeel_9.0.4.txt | 2 +- 21 files changed, 26 insertions(+), 21 deletions(-) diff --git a/flatlaf-testing/src/main/java/com/formdev/flatlaf/testing/uidefaults/UIDefaultsDump.java b/flatlaf-testing/src/main/java/com/formdev/flatlaf/testing/uidefaults/UIDefaultsDump.java index 641cd93a..bbf7735e 100644 --- a/flatlaf-testing/src/main/java/com/formdev/flatlaf/testing/uidefaults/UIDefaultsDump.java +++ b/flatlaf-testing/src/main/java/com/formdev/flatlaf/testing/uidefaults/UIDefaultsDump.java @@ -155,10 +155,15 @@ public class UIDefaultsDump if( value == null || value instanceof String || value instanceof Number || - value instanceof Character || value instanceof Boolean ) { out.print( value ); + } else if( value instanceof Character ) { + char ch = ((Character)value).charValue(); + if( ch >= ' ' && ch <= '~' ) + out.printf( "'%c'", value ); + else + out.printf( "'\\u%h'", (int) ch ); } else if( value.getClass().isArray() ) dumpArray( out, value ); else if( value instanceof List ) diff --git a/flatlaf-testing/src/main/resources/com/formdev/flatlaf/testing/uidefaults/BasicLookAndFeel_1.8.0_202.txt b/flatlaf-testing/src/main/resources/com/formdev/flatlaf/testing/uidefaults/BasicLookAndFeel_1.8.0_202.txt index b1bd9aea..2c515615 100644 --- a/flatlaf-testing/src/main/resources/com/formdev/flatlaf/testing/uidefaults/BasicLookAndFeel_1.8.0_202.txt +++ b/flatlaf-testing/src/main/resources/com/formdev/flatlaf/testing/uidefaults/BasicLookAndFeel_1.8.0_202.txt @@ -537,7 +537,7 @@ PasswordField.background #ffffff javax.swing.plaf.ColorUIResource [UI] PasswordField.border [lazy] 2,2,2,2 false javax.swing.plaf.basic.BasicBorders$FieldBorder [UI] PasswordField.caretBlinkRate 500 PasswordField.caretForeground #000000 javax.swing.plaf.ColorUIResource [UI] -PasswordField.echoChar * +PasswordField.echoChar '*' PasswordField.font [lazy] Monospaced plain 12 javax.swing.plaf.FontUIResource [UI] PasswordField.foreground #000000 javax.swing.plaf.ColorUIResource [UI] PasswordField.inactiveBackground #c0c0c0 javax.swing.plaf.ColorUIResource [UI] diff --git a/flatlaf-testing/src/main/resources/com/formdev/flatlaf/testing/uidefaults/BasicLookAndFeel_10.0.2.txt b/flatlaf-testing/src/main/resources/com/formdev/flatlaf/testing/uidefaults/BasicLookAndFeel_10.0.2.txt index 069b0514..fcd75bf1 100644 --- a/flatlaf-testing/src/main/resources/com/formdev/flatlaf/testing/uidefaults/BasicLookAndFeel_10.0.2.txt +++ b/flatlaf-testing/src/main/resources/com/formdev/flatlaf/testing/uidefaults/BasicLookAndFeel_10.0.2.txt @@ -537,7 +537,7 @@ PasswordField.background #ffffff javax.swing.plaf.ColorUIResource [UI] PasswordField.border [lazy] 2,2,2,2 false javax.swing.plaf.basic.BasicBorders$FieldBorder [UI] PasswordField.caretBlinkRate 500 PasswordField.caretForeground #000000 javax.swing.plaf.ColorUIResource [UI] -PasswordField.echoChar * +PasswordField.echoChar '*' PasswordField.font [lazy] Monospaced plain 12 javax.swing.plaf.FontUIResource [UI] PasswordField.foreground #000000 javax.swing.plaf.ColorUIResource [UI] PasswordField.inactiveBackground #c0c0c0 javax.swing.plaf.ColorUIResource [UI] diff --git a/flatlaf-testing/src/main/resources/com/formdev/flatlaf/testing/uidefaults/BasicLookAndFeel_11.0.2.txt b/flatlaf-testing/src/main/resources/com/formdev/flatlaf/testing/uidefaults/BasicLookAndFeel_11.0.2.txt index f25e4fa6..347b48b1 100644 --- a/flatlaf-testing/src/main/resources/com/formdev/flatlaf/testing/uidefaults/BasicLookAndFeel_11.0.2.txt +++ b/flatlaf-testing/src/main/resources/com/formdev/flatlaf/testing/uidefaults/BasicLookAndFeel_11.0.2.txt @@ -538,7 +538,7 @@ PasswordField.background #ffffff javax.swing.plaf.ColorUIResource [UI] PasswordField.border [lazy] 2,2,2,2 false javax.swing.plaf.basic.BasicBorders$FieldBorder [UI] PasswordField.caretBlinkRate 500 PasswordField.caretForeground #000000 javax.swing.plaf.ColorUIResource [UI] -PasswordField.echoChar * +PasswordField.echoChar '*' PasswordField.font [lazy] Monospaced plain 12 javax.swing.plaf.FontUIResource [UI] PasswordField.foreground #000000 javax.swing.plaf.ColorUIResource [UI] PasswordField.inactiveBackground #c0c0c0 javax.swing.plaf.ColorUIResource [UI] diff --git a/flatlaf-testing/src/main/resources/com/formdev/flatlaf/testing/uidefaults/BasicLookAndFeel_12.0.2.txt b/flatlaf-testing/src/main/resources/com/formdev/flatlaf/testing/uidefaults/BasicLookAndFeel_12.0.2.txt index 9531350c..4280e828 100644 --- a/flatlaf-testing/src/main/resources/com/formdev/flatlaf/testing/uidefaults/BasicLookAndFeel_12.0.2.txt +++ b/flatlaf-testing/src/main/resources/com/formdev/flatlaf/testing/uidefaults/BasicLookAndFeel_12.0.2.txt @@ -538,7 +538,7 @@ PasswordField.background #ffffff javax.swing.plaf.ColorUIResource [UI] PasswordField.border [lazy] 2,2,2,2 false javax.swing.plaf.basic.BasicBorders$FieldBorder [UI] PasswordField.caretBlinkRate 500 PasswordField.caretForeground #000000 javax.swing.plaf.ColorUIResource [UI] -PasswordField.echoChar * +PasswordField.echoChar '*' PasswordField.font [lazy] Monospaced plain 12 javax.swing.plaf.FontUIResource [UI] PasswordField.foreground #000000 javax.swing.plaf.ColorUIResource [UI] PasswordField.inactiveBackground #c0c0c0 javax.swing.plaf.ColorUIResource [UI] diff --git a/flatlaf-testing/src/main/resources/com/formdev/flatlaf/testing/uidefaults/BasicLookAndFeel_13.0.2.txt b/flatlaf-testing/src/main/resources/com/formdev/flatlaf/testing/uidefaults/BasicLookAndFeel_13.0.2.txt index 42029852..51bd27c8 100644 --- a/flatlaf-testing/src/main/resources/com/formdev/flatlaf/testing/uidefaults/BasicLookAndFeel_13.0.2.txt +++ b/flatlaf-testing/src/main/resources/com/formdev/flatlaf/testing/uidefaults/BasicLookAndFeel_13.0.2.txt @@ -538,7 +538,7 @@ PasswordField.background #ffffff javax.swing.plaf.ColorUIResource [UI] PasswordField.border [lazy] 2,2,2,2 false javax.swing.plaf.basic.BasicBorders$FieldBorder [UI] PasswordField.caretBlinkRate 500 PasswordField.caretForeground #000000 javax.swing.plaf.ColorUIResource [UI] -PasswordField.echoChar * +PasswordField.echoChar '*' PasswordField.font [lazy] Monospaced plain 12 javax.swing.plaf.FontUIResource [UI] PasswordField.foreground #000000 javax.swing.plaf.ColorUIResource [UI] PasswordField.inactiveBackground #c0c0c0 javax.swing.plaf.ColorUIResource [UI] diff --git a/flatlaf-testing/src/main/resources/com/formdev/flatlaf/testing/uidefaults/BasicLookAndFeel_9.0.4.txt b/flatlaf-testing/src/main/resources/com/formdev/flatlaf/testing/uidefaults/BasicLookAndFeel_9.0.4.txt index 92c8b797..5f8b3236 100644 --- a/flatlaf-testing/src/main/resources/com/formdev/flatlaf/testing/uidefaults/BasicLookAndFeel_9.0.4.txt +++ b/flatlaf-testing/src/main/resources/com/formdev/flatlaf/testing/uidefaults/BasicLookAndFeel_9.0.4.txt @@ -537,7 +537,7 @@ PasswordField.background #ffffff javax.swing.plaf.ColorUIResource [UI] PasswordField.border [lazy] 2,2,2,2 false javax.swing.plaf.basic.BasicBorders$FieldBorder [UI] PasswordField.caretBlinkRate 500 PasswordField.caretForeground #000000 javax.swing.plaf.ColorUIResource [UI] -PasswordField.echoChar * +PasswordField.echoChar '*' PasswordField.font [lazy] Monospaced plain 12 javax.swing.plaf.FontUIResource [UI] PasswordField.foreground #000000 javax.swing.plaf.ColorUIResource [UI] PasswordField.inactiveBackground #c0c0c0 javax.swing.plaf.ColorUIResource [UI] diff --git a/flatlaf-testing/src/main/resources/com/formdev/flatlaf/testing/uidefaults/FlatDarkLaf_1.8.0_202.txt b/flatlaf-testing/src/main/resources/com/formdev/flatlaf/testing/uidefaults/FlatDarkLaf_1.8.0_202.txt index 4094ca4e..fc83251d 100644 --- a/flatlaf-testing/src/main/resources/com/formdev/flatlaf/testing/uidefaults/FlatDarkLaf_1.8.0_202.txt +++ b/flatlaf-testing/src/main/resources/com/formdev/flatlaf/testing/uidefaults/FlatDarkLaf_1.8.0_202.txt @@ -923,7 +923,7 @@ PasswordField.border [lazy] 1,1,1,1 false com.formdev.flatlaf.ui.F PasswordField.caretBlinkRate 500 PasswordField.caretForeground #bbbbbb javax.swing.plaf.ColorUIResource [UI] PasswordField.disabledBackground #3c3f41 javax.swing.plaf.ColorUIResource [UI] -PasswordField.echoChar • +PasswordField.echoChar '\u2022' PasswordField.focusInputMap [lazy] 37 javax.swing.plaf.InputMapUIResource [UI] ctrl pressed A select-all ctrl pressed BACK_SLASH unselect diff --git a/flatlaf-testing/src/main/resources/com/formdev/flatlaf/testing/uidefaults/FlatLightLaf_1.8.0_202.txt b/flatlaf-testing/src/main/resources/com/formdev/flatlaf/testing/uidefaults/FlatLightLaf_1.8.0_202.txt index afbc891e..87d004dd 100644 --- a/flatlaf-testing/src/main/resources/com/formdev/flatlaf/testing/uidefaults/FlatLightLaf_1.8.0_202.txt +++ b/flatlaf-testing/src/main/resources/com/formdev/flatlaf/testing/uidefaults/FlatLightLaf_1.8.0_202.txt @@ -925,7 +925,7 @@ PasswordField.border [lazy] 1,1,1,1 false com.formdev.flatlaf.ui.F PasswordField.caretBlinkRate 500 PasswordField.caretForeground #000000 javax.swing.plaf.ColorUIResource [UI] PasswordField.disabledBackground #f2f2f2 javax.swing.plaf.ColorUIResource [UI] -PasswordField.echoChar • +PasswordField.echoChar '\u2022' PasswordField.focusInputMap [lazy] 37 javax.swing.plaf.InputMapUIResource [UI] ctrl pressed A select-all ctrl pressed BACK_SLASH unselect diff --git a/flatlaf-testing/src/main/resources/com/formdev/flatlaf/testing/uidefaults/MetalLookAndFeel_1.8.0_202.txt b/flatlaf-testing/src/main/resources/com/formdev/flatlaf/testing/uidefaults/MetalLookAndFeel_1.8.0_202.txt index 08f647cf..dc488979 100644 --- a/flatlaf-testing/src/main/resources/com/formdev/flatlaf/testing/uidefaults/MetalLookAndFeel_1.8.0_202.txt +++ b/flatlaf-testing/src/main/resources/com/formdev/flatlaf/testing/uidefaults/MetalLookAndFeel_1.8.0_202.txt @@ -696,7 +696,7 @@ PasswordField.border [lazy] javax.swing.plaf.BorderUIResource$Compound 0,0,0,0 false javax.swing.plaf.basic.BasicBorders$MarginBorder [UI] PasswordField.caretBlinkRate 500 PasswordField.caretForeground #333333 sun.swing.PrintColorUIResource [UI] -PasswordField.echoChar • +PasswordField.echoChar '\u2022' PasswordField.focusInputMap [lazy] 37 javax.swing.plaf.InputMapUIResource [UI] ctrl pressed A select-all ctrl pressed BACK_SLASH unselect diff --git a/flatlaf-testing/src/main/resources/com/formdev/flatlaf/testing/uidefaults/MetalLookAndFeel_10.0.2.txt b/flatlaf-testing/src/main/resources/com/formdev/flatlaf/testing/uidefaults/MetalLookAndFeel_10.0.2.txt index 87618fc3..1dedb7b6 100644 --- a/flatlaf-testing/src/main/resources/com/formdev/flatlaf/testing/uidefaults/MetalLookAndFeel_10.0.2.txt +++ b/flatlaf-testing/src/main/resources/com/formdev/flatlaf/testing/uidefaults/MetalLookAndFeel_10.0.2.txt @@ -691,7 +691,7 @@ PasswordField.border [lazy] javax.swing.plaf.BorderUIResource$Compound 0,0,0,0 false javax.swing.plaf.basic.BasicBorders$MarginBorder [UI] PasswordField.caretBlinkRate 500 PasswordField.caretForeground #333333 sun.swing.PrintColorUIResource [UI] -PasswordField.echoChar • +PasswordField.echoChar '\u2022' PasswordField.focusInputMap [lazy] 37 javax.swing.plaf.InputMapUIResource [UI] ctrl pressed A select-all ctrl pressed BACK_SLASH unselect diff --git a/flatlaf-testing/src/main/resources/com/formdev/flatlaf/testing/uidefaults/MetalLookAndFeel_11.0.2.txt b/flatlaf-testing/src/main/resources/com/formdev/flatlaf/testing/uidefaults/MetalLookAndFeel_11.0.2.txt index cf9860ae..1239414d 100644 --- a/flatlaf-testing/src/main/resources/com/formdev/flatlaf/testing/uidefaults/MetalLookAndFeel_11.0.2.txt +++ b/flatlaf-testing/src/main/resources/com/formdev/flatlaf/testing/uidefaults/MetalLookAndFeel_11.0.2.txt @@ -692,7 +692,7 @@ PasswordField.border [lazy] javax.swing.plaf.BorderUIResource$Compound 0,0,0,0 false javax.swing.plaf.basic.BasicBorders$MarginBorder [UI] PasswordField.caretBlinkRate 500 PasswordField.caretForeground #333333 sun.swing.PrintColorUIResource [UI] -PasswordField.echoChar • +PasswordField.echoChar '\u2022' PasswordField.focusInputMap [lazy] 37 javax.swing.plaf.InputMapUIResource [UI] ctrl pressed A select-all ctrl pressed BACK_SLASH unselect diff --git a/flatlaf-testing/src/main/resources/com/formdev/flatlaf/testing/uidefaults/MetalLookAndFeel_12.0.2.txt b/flatlaf-testing/src/main/resources/com/formdev/flatlaf/testing/uidefaults/MetalLookAndFeel_12.0.2.txt index e5463671..30cd6a70 100644 --- a/flatlaf-testing/src/main/resources/com/formdev/flatlaf/testing/uidefaults/MetalLookAndFeel_12.0.2.txt +++ b/flatlaf-testing/src/main/resources/com/formdev/flatlaf/testing/uidefaults/MetalLookAndFeel_12.0.2.txt @@ -692,7 +692,7 @@ PasswordField.border [lazy] javax.swing.plaf.BorderUIResource$Compound 0,0,0,0 false javax.swing.plaf.basic.BasicBorders$MarginBorder [UI] PasswordField.caretBlinkRate 500 PasswordField.caretForeground #333333 sun.swing.PrintColorUIResource [UI] -PasswordField.echoChar • +PasswordField.echoChar '\u2022' PasswordField.focusInputMap [lazy] 37 javax.swing.plaf.InputMapUIResource [UI] ctrl pressed A select-all ctrl pressed BACK_SLASH unselect diff --git a/flatlaf-testing/src/main/resources/com/formdev/flatlaf/testing/uidefaults/MetalLookAndFeel_13.0.2.txt b/flatlaf-testing/src/main/resources/com/formdev/flatlaf/testing/uidefaults/MetalLookAndFeel_13.0.2.txt index 32e808be..3dc2f098 100644 --- a/flatlaf-testing/src/main/resources/com/formdev/flatlaf/testing/uidefaults/MetalLookAndFeel_13.0.2.txt +++ b/flatlaf-testing/src/main/resources/com/formdev/flatlaf/testing/uidefaults/MetalLookAndFeel_13.0.2.txt @@ -692,7 +692,7 @@ PasswordField.border [lazy] javax.swing.plaf.BorderUIResource$Compound 0,0,0,0 false javax.swing.plaf.basic.BasicBorders$MarginBorder [UI] PasswordField.caretBlinkRate 500 PasswordField.caretForeground #333333 sun.swing.PrintColorUIResource [UI] -PasswordField.echoChar • +PasswordField.echoChar '\u2022' PasswordField.focusInputMap [lazy] 37 javax.swing.plaf.InputMapUIResource [UI] ctrl pressed A select-all ctrl pressed BACK_SLASH unselect diff --git a/flatlaf-testing/src/main/resources/com/formdev/flatlaf/testing/uidefaults/MetalLookAndFeel_9.0.4.txt b/flatlaf-testing/src/main/resources/com/formdev/flatlaf/testing/uidefaults/MetalLookAndFeel_9.0.4.txt index c678dee5..c0065c90 100644 --- a/flatlaf-testing/src/main/resources/com/formdev/flatlaf/testing/uidefaults/MetalLookAndFeel_9.0.4.txt +++ b/flatlaf-testing/src/main/resources/com/formdev/flatlaf/testing/uidefaults/MetalLookAndFeel_9.0.4.txt @@ -691,7 +691,7 @@ PasswordField.border [lazy] javax.swing.plaf.BorderUIResource$Compound 0,0,0,0 false javax.swing.plaf.basic.BasicBorders$MarginBorder [UI] PasswordField.caretBlinkRate 500 PasswordField.caretForeground #333333 sun.swing.PrintColorUIResource [UI] -PasswordField.echoChar • +PasswordField.echoChar '\u2022' PasswordField.focusInputMap [lazy] 37 javax.swing.plaf.InputMapUIResource [UI] ctrl pressed A select-all ctrl pressed BACK_SLASH unselect diff --git a/flatlaf-testing/src/main/resources/com/formdev/flatlaf/testing/uidefaults/WindowsLookAndFeel_1.8.0_202.txt b/flatlaf-testing/src/main/resources/com/formdev/flatlaf/testing/uidefaults/WindowsLookAndFeel_1.8.0_202.txt index 12988393..cd7a889a 100644 --- a/flatlaf-testing/src/main/resources/com/formdev/flatlaf/testing/uidefaults/WindowsLookAndFeel_1.8.0_202.txt +++ b/flatlaf-testing/src/main/resources/com/formdev/flatlaf/testing/uidefaults/WindowsLookAndFeel_1.8.0_202.txt @@ -682,7 +682,7 @@ PasswordField.border [active] line: #abadb3 javax.swing.plaf.ColorU PasswordField.caretBlinkRate 500 PasswordField.caretForeground [active] #000000 javax.swing.plaf.ColorUIResource [UI] PasswordField.disabledBackground [active] #f0f0f0 javax.swing.plaf.ColorUIResource [UI] -PasswordField.echoChar [active] ? +PasswordField.echoChar [active] '\u25cf' PasswordField.focusInputMap [lazy] 31 javax.swing.plaf.InputMapUIResource [UI] ctrl pressed A select-all ctrl pressed BACK_SLASH unselect diff --git a/flatlaf-testing/src/main/resources/com/formdev/flatlaf/testing/uidefaults/WindowsLookAndFeel_10.0.2.txt b/flatlaf-testing/src/main/resources/com/formdev/flatlaf/testing/uidefaults/WindowsLookAndFeel_10.0.2.txt index 8fd7007d..f771452e 100644 --- a/flatlaf-testing/src/main/resources/com/formdev/flatlaf/testing/uidefaults/WindowsLookAndFeel_10.0.2.txt +++ b/flatlaf-testing/src/main/resources/com/formdev/flatlaf/testing/uidefaults/WindowsLookAndFeel_10.0.2.txt @@ -674,7 +674,7 @@ PasswordField.border [active] line: #abadb3 javax.swing.plaf.ColorU PasswordField.caretBlinkRate 500 PasswordField.caretForeground [active] #000000 javax.swing.plaf.ColorUIResource [UI] PasswordField.disabledBackground [active] #f0f0f0 javax.swing.plaf.ColorUIResource [UI] -PasswordField.echoChar [active] ? +PasswordField.echoChar [active] '\u25cf' PasswordField.focusInputMap [lazy] 31 javax.swing.plaf.InputMapUIResource [UI] ctrl pressed A select-all ctrl pressed BACK_SLASH unselect diff --git a/flatlaf-testing/src/main/resources/com/formdev/flatlaf/testing/uidefaults/WindowsLookAndFeel_11.0.2.txt b/flatlaf-testing/src/main/resources/com/formdev/flatlaf/testing/uidefaults/WindowsLookAndFeel_11.0.2.txt index 910a4e67..6ca52142 100644 --- a/flatlaf-testing/src/main/resources/com/formdev/flatlaf/testing/uidefaults/WindowsLookAndFeel_11.0.2.txt +++ b/flatlaf-testing/src/main/resources/com/formdev/flatlaf/testing/uidefaults/WindowsLookAndFeel_11.0.2.txt @@ -675,7 +675,7 @@ PasswordField.border [active] line: #abadb3 javax.swing.plaf.ColorU PasswordField.caretBlinkRate 500 PasswordField.caretForeground [active] #000000 javax.swing.plaf.ColorUIResource [UI] PasswordField.disabledBackground [active] #f0f0f0 javax.swing.plaf.ColorUIResource [UI] -PasswordField.echoChar [active] ? +PasswordField.echoChar [active] '\u25cf' PasswordField.focusInputMap [lazy] 31 javax.swing.plaf.InputMapUIResource [UI] ctrl pressed A select-all ctrl pressed BACK_SLASH unselect diff --git a/flatlaf-testing/src/main/resources/com/formdev/flatlaf/testing/uidefaults/WindowsLookAndFeel_12.0.2.txt b/flatlaf-testing/src/main/resources/com/formdev/flatlaf/testing/uidefaults/WindowsLookAndFeel_12.0.2.txt index e0300d12..972a2ed4 100644 --- a/flatlaf-testing/src/main/resources/com/formdev/flatlaf/testing/uidefaults/WindowsLookAndFeel_12.0.2.txt +++ b/flatlaf-testing/src/main/resources/com/formdev/flatlaf/testing/uidefaults/WindowsLookAndFeel_12.0.2.txt @@ -675,7 +675,7 @@ PasswordField.border [active] line: #abadb3 javax.swing.plaf.ColorU PasswordField.caretBlinkRate 500 PasswordField.caretForeground [active] #000000 javax.swing.plaf.ColorUIResource [UI] PasswordField.disabledBackground [active] #f0f0f0 javax.swing.plaf.ColorUIResource [UI] -PasswordField.echoChar [active] ? +PasswordField.echoChar [active] '\u25cf' PasswordField.focusInputMap [lazy] 31 javax.swing.plaf.InputMapUIResource [UI] ctrl pressed A select-all ctrl pressed BACK_SLASH unselect diff --git a/flatlaf-testing/src/main/resources/com/formdev/flatlaf/testing/uidefaults/WindowsLookAndFeel_13.0.2.txt b/flatlaf-testing/src/main/resources/com/formdev/flatlaf/testing/uidefaults/WindowsLookAndFeel_13.0.2.txt index 71e12d65..0ec66f31 100644 --- a/flatlaf-testing/src/main/resources/com/formdev/flatlaf/testing/uidefaults/WindowsLookAndFeel_13.0.2.txt +++ b/flatlaf-testing/src/main/resources/com/formdev/flatlaf/testing/uidefaults/WindowsLookAndFeel_13.0.2.txt @@ -675,7 +675,7 @@ PasswordField.border [active] line: #abadb3 javax.swing.plaf.ColorU PasswordField.caretBlinkRate 500 PasswordField.caretForeground [active] #000000 javax.swing.plaf.ColorUIResource [UI] PasswordField.disabledBackground [active] #f0f0f0 javax.swing.plaf.ColorUIResource [UI] -PasswordField.echoChar [active] ? +PasswordField.echoChar [active] '\u25cf' PasswordField.focusInputMap [lazy] 31 javax.swing.plaf.InputMapUIResource [UI] ctrl pressed A select-all ctrl pressed BACK_SLASH unselect diff --git a/flatlaf-testing/src/main/resources/com/formdev/flatlaf/testing/uidefaults/WindowsLookAndFeel_9.0.4.txt b/flatlaf-testing/src/main/resources/com/formdev/flatlaf/testing/uidefaults/WindowsLookAndFeel_9.0.4.txt index a751d638..212a218c 100644 --- a/flatlaf-testing/src/main/resources/com/formdev/flatlaf/testing/uidefaults/WindowsLookAndFeel_9.0.4.txt +++ b/flatlaf-testing/src/main/resources/com/formdev/flatlaf/testing/uidefaults/WindowsLookAndFeel_9.0.4.txt @@ -674,7 +674,7 @@ PasswordField.border [active] line: #abadb3 javax.swing.plaf.ColorU PasswordField.caretBlinkRate 500 PasswordField.caretForeground [active] #000000 javax.swing.plaf.ColorUIResource [UI] PasswordField.disabledBackground [active] #f0f0f0 javax.swing.plaf.ColorUIResource [UI] -PasswordField.echoChar [active] ? +PasswordField.echoChar [active] '\u25cf' PasswordField.focusInputMap [lazy] 31 javax.swing.plaf.InputMapUIResource [UI] ctrl pressed A select-all ctrl pressed BACK_SLASH unselect