From 524b0ffe42842f528caec7f5385f144797160f6b Mon Sep 17 00:00:00 2001 From: William Schaefer Date: Wed, 4 Sep 2019 12:24:31 -0400 Subject: [PATCH] 5423 disable multi-select --- .../org/sleuthkit/autopsy/filequery/ImageThumbnailViewer.form | 2 +- .../org/sleuthkit/autopsy/filequery/ImageThumbnailViewer.java | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Core/src/org/sleuthkit/autopsy/filequery/ImageThumbnailViewer.form b/Core/src/org/sleuthkit/autopsy/filequery/ImageThumbnailViewer.form index 7ff333b8b3..4d065c3bf9 100644 --- a/Core/src/org/sleuthkit/autopsy/filequery/ImageThumbnailViewer.form +++ b/Core/src/org/sleuthkit/autopsy/filequery/ImageThumbnailViewer.form @@ -33,7 +33,7 @@ - + diff --git a/Core/src/org/sleuthkit/autopsy/filequery/ImageThumbnailViewer.java b/Core/src/org/sleuthkit/autopsy/filequery/ImageThumbnailViewer.java index c919c1b82f..4633aea045 100644 --- a/Core/src/org/sleuthkit/autopsy/filequery/ImageThumbnailViewer.java +++ b/Core/src/org/sleuthkit/autopsy/filequery/ImageThumbnailViewer.java @@ -56,7 +56,7 @@ public class ImageThumbnailViewer extends javax.swing.JPanel { setLayout(new java.awt.BorderLayout()); thumbnailList.setModel(thumbnailListModel); - thumbnailList.setSelectionMode(javax.swing.ListSelectionModel.SINGLE_INTERVAL_SELECTION); + thumbnailList.setSelectionMode(javax.swing.ListSelectionModel.SINGLE_SELECTION); thumbnailList.setCellRenderer(new ImageThumbnailPanel()); thumbnailList.setLayoutOrientation(javax.swing.JList.HORIZONTAL_WRAP); thumbnailList.setVisibleRowCount(0);