RFR: 7188058: Background of TextComponents are not changing colors to the default disabled color when set to uneditable [v2]
Alisen Chung
achung at openjdk.org
Thu Jul 25 00:02:07 UTC 2024
> Currently the bug described in the issue is that the colors of the TextComponents do not change when setting TextComponents to uneditable. The default uneditable color (SystemColor.control) happens to be the same as the default for the editable color for some L&Fs, so the fix may not be initially noticeable. However, the bug still exists where the the color is not being changed when changing between editable and uneditable. You can check by changing TextComponent.getBackground() code to return Color.GRAY on line 342 and you can see that TextComponents are not changing to a gray background when set to uneditable.
>
> This fix adds a private setBackground method in TextComponent so that TextArea and TextField can change the background color to the correct color (SystemColor.control) when set uneditable by overriding the TextComponent setEditable. You can verify the fix by changing this color to Color.GRAY and verifying the backgrounds change to gray when the TextComponents are disabled.
Alisen Chung has updated the pull request incrementally with one additional commit since the last revision:
moved test to awt
-------------
Changes:
- all: https://git.openjdk.org/jdk/pull/19876/files
- new: https://git.openjdk.org/jdk/pull/19876/files/2a0cdbdb..0b0f049c
Webrevs:
- full: https://webrevs.openjdk.org/?repo=jdk&pr=19876&range=01
- incr: https://webrevs.openjdk.org/?repo=jdk&pr=19876&range=00-01
Stats: 0 lines in 1 file changed: 0 ins; 0 del; 0 mod
Patch: https://git.openjdk.org/jdk/pull/19876.diff
Fetch: git fetch https://git.openjdk.org/jdk.git pull/19876/head:pull/19876
PR: https://git.openjdk.org/jdk/pull/19876
More information about the client-libs-dev
mailing list