mirror of
https://github.com/mitb-archive/filebot
synced 2024-11-16 14:25:02 -05:00
* fix all other LaFs
This commit is contained in:
parent
c90c4b169c
commit
cc3fe56621
@ -31,6 +31,7 @@ import javax.swing.plaf.basic.ComboPopup;
|
||||
import javax.swing.text.JTextComponent;
|
||||
|
||||
import net.filebot.ResourceManager;
|
||||
import net.filebot.Settings;
|
||||
import net.filebot.util.ui.SelectButton;
|
||||
import net.filebot.util.ui.SwingUI;
|
||||
import net.miginfocom.swing.MigLayout;
|
||||
@ -137,9 +138,14 @@ public class SelectButtonTextField<T> extends JComponent {
|
||||
arrowButton.setBackground(Color.white);
|
||||
arrowButton.setOpaque(true);
|
||||
arrowButton.setBorder(createEmptyBorder());
|
||||
arrowButton.setContentAreaFilled(true);
|
||||
arrowButton.setContentAreaFilled(false);
|
||||
arrowButton.setFocusPainted(false);
|
||||
arrowButton.setFocusable(false);
|
||||
|
||||
// fix Aqua UI
|
||||
if (Settings.isMacApp()) {
|
||||
arrowButton.setContentAreaFilled(true);
|
||||
}
|
||||
}
|
||||
|
||||
@Override
|
||||
|
Loading…
Reference in New Issue
Block a user