Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

TabbedPane wheel scrolling #187

Merged
merged 10 commits into from
Oct 14, 2020
9 changes: 9 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,15 @@
FlatLaf Change Log
==================

## 0.44-SNAPSHOT

#### New features and improvements

- TabbedPane: Support scrolling tabs with mouse wheel (if `tabLayoutPolicy` is
`SCROLL_TAB_LAYOUT`). (issue #40)
- TabbedPane: Repeat scrolling as long as arrow buttons are pressed. (issue #40)


## 0.43

#### New features and improvements
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -92,6 +92,14 @@ public interface FlatSystemProperties
*/
String MENUBAR_EMBEDDED = "flatlaf.menuBarEmbedded";

/**
* Specifies whether animations are enabled.
* <p>
* <strong>Allowed Values</strong> {@code false} and {@code true}<br>
* <strong>Default</strong> {@code true}
*/
String ANIMATION = "flatlaf.animation";

/**
* Specifies whether vertical text position is corrected when UI is scaled on HiDPI screens.
* <p>
Expand Down
Loading