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

Improved conflict dialog

This commit is contained in:
Reinhard Pointner 2016-08-18 01:11:23 +08:00
parent 800d61543b
commit 6f675d42cb

View File

@ -62,10 +62,11 @@ class ConflictDialog extends JDialog {
table.getColumnModel().getColumn(0).setMaxWidth(40);
table.setRowHeight(25);
table.setPreferredScrollableViewportSize(new Dimension(500, 250));
table.addMouseListener(new OpenListener());
// force white background (e.g. gtk-laf default table background is gray)
// force white background (e.g. GTK LaF default table background is gray)
setBackground(Color.WHITE);
JComponent c = (JComponent) getContentPane();