Skip to content

Commit

Permalink
Merge branch 'flatlaf-3.5.4' into main
Browse files Browse the repository at this point in the history
  • Loading branch information
DevCharly committed Dec 9, 2024
2 parents 304cb0d + 3ba9fc6 commit 3af54b7
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 3 deletions.
8 changes: 7 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,12 +7,18 @@ FlatLaf Change Log

- Tree: Support for alternate row highlighting. (PR #903)
- Extras: `FlatSVGIcon` color filters now can access painting component to
implement component state based color mappings. (PR #906)
implement component state based color mappings. (issue #906)


## 3.5.4

#### Fixed bugs

- HTML: Fixed NPE when using HTML text on a component with `null` font. (issue
#930; PR #931; regression in 3.5)
- Linux: Fixed NPE when using FlatLaf window decorations and switching theme.
(issue #933; regression in 3.5.3)


## 3.5.3

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -272,7 +272,8 @@ public void uninstall() {
public void doLayout() {
super.doLayout();

centerComp.setBounds( 0, 0, resizeComp.getWidth(), resizeComp.getHeight() );
if( centerComp != null && centerComp.isVisible() )
centerComp.setBounds( 0, 0, resizeComp.getWidth(), resizeComp.getHeight() );
}

@Override
Expand Down Expand Up @@ -376,6 +377,7 @@ public void windowStateChanged( WindowEvent e ) {

@Override
protected void beginResizing( int resizeDir ) {
centerComp.setBounds( 0, 0, resizeComp.getWidth(), resizeComp.getHeight() );
centerComp.setCursor( getPredefinedCursor( resizeDir ) );
centerComp.setVisible( true );
}
Expand Down
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
# limitations under the License.
#

flatlaf.releaseVersion = 3.5.3
flatlaf.releaseVersion = 3.5.4
flatlaf.developmentVersion = 3.6-SNAPSHOT

org.gradle.parallel = true
Expand Down

0 comments on commit 3af54b7

Please sign in to comment.