diff --git a/CHANGELOG.md b/CHANGELOG.md index 6aa75f47..c301fad7 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -55,11 +55,19 @@ FlatLaf Change Log #### Fixed bugs +- Tree: Fixed editing cell issue with custom cell renderer and cell editor that + use same component for rendering and editing. (issue #385) + + +## 1.6.2 + +#### Fixed bugs + - ComboBox (not editable): Fixed background painted outside of border if round edges are enabled (client property `JComponent.roundRect` is `true`). (similar to issue #382; regression since fixing #330 in FlatLaf 1.4) -- Tree: Fixed editing cell issue with custom cell renderer and cell editor that - use same component for rendering and editing. (issue #385) +- ComboBox: Fixed `NullPointerException`, which may occur under special + circumstances. (issue #408) - Table: Do not select text in cell editor when it gets focus (when `JTable.surrendersFocusOnKeystroke` is `true`) and `TextComponent.selectAllOnFocusPolicy` is `once` (the default) or `always`. diff --git a/build.gradle.kts b/build.gradle.kts index b46629d7..d1401962 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -14,7 +14,7 @@ * limitations under the License. */ -val releaseVersion = "1.6.1" +val releaseVersion = "1.6.2" val developmentVersion = "2.0-SNAPSHOT" version = if( java.lang.Boolean.getBoolean( "release" ) ) releaseVersion else developmentVersion