1
0
mirror of https://github.com/mitb-archive/filebot synced 2024-08-13 17:03:45 -04:00

* fix background issues on Mac

This commit is contained in:
Reinhard Pointner 2015-04-21 08:47:33 +00:00
parent a976794614
commit 1059c00612

View File

@ -294,6 +294,10 @@ class HistoryDialog extends JDialog {
JScrollPane scrollPane = new JScrollPane(component);
scrollPane.setBorder(new CompoundBorder(new TitledBorder(title), scrollPane.getBorder()));
if (isMacApp()) {
scrollPane.setOpaque(false);
}
return scrollPane;
}