spelling: preferred

Signed-off-by: Josh Soref <[email protected]>
This commit is contained in:
Josh Soref
2024-10-29 16:55:43 +01:00
committed by Jindra Petřík
parent 371649b697
commit 8958ae030b
4 changed files with 10 additions and 10 deletions
@@ -5319,9 +5319,9 @@ public final class MainPanel extends JPanel implements TreeSelectionListener, Se
fc.setCurrentDirectory(new File(Configuration.lastOpenDir.get()));
if (imagePreview) {
fc.setAccessory(new FileChooserImagePreview(fc));
Dimension prefferedSize = new Dimension(fc.getPreferredSize());
prefferedSize.width += FileChooserImagePreview.PREVIEW_SIZE;
fc.setPreferredSize(prefferedSize);
Dimension preferredSize = new Dimension(fc.getPreferredSize());
preferredSize.width += FileChooserImagePreview.PREVIEW_SIZE;
fc.setPreferredSize(preferredSize);
}
boolean first = true;
for (int i = 0; i < filterArray.length; i += 2) {