Fixed: #1622 Slow scrolling (search results, advanced settings and others)

This commit is contained in:
Jindra Petřík
2021-03-05 21:22:55 +01:00
parent a597625239
commit b08567de7a
31 changed files with 116 additions and 56 deletions
@@ -78,7 +78,7 @@ public class FilesChangedDialog extends AppDialog {
cnt.add(label, BorderLayout.NORTH);
filesList = new JList<String>(listModel);
filesList.setBackground(Color.white);
cnt.add(new JScrollPane(filesList), BorderLayout.CENTER);
cnt.add(new FasterScrollPane(filesList), BorderLayout.CENTER);
JPanel panButtons = new JPanel(new FlowLayout());
okButton.addActionListener(this::okButtonActionPerformed);