kunstmusik / blue

Blue - An Integrated Music Environment
https://blue.kunstmusik.com
GNU General Public License v2.0
131 stars 11 forks source link

Dropdown Menu takes up more space #719

Closed tjingboem closed 1 year ago

tjingboem commented 1 year ago

With FlatLaf the Dropdown Menu takes up more space. Screenshot from 2023-01-12 11-46-16

DevCharly commented 1 year ago

This is because in FlatLaf the JComboBox has a minimum width of 72px by default.

You can disable minimum width for all combo boxes with e.g.:

UIManager.put( "ComboBox.minimumWidth", 0 );

of for single combo box with:

myComboBox.putClientProperty( "JComponent.minimumWidth", 0 );
kunstmusik commented 1 year ago

Thank you very much @DevCharly for the guidance!