We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7fecb8e commit c7fb8f6Copy full SHA for c7fb8f6
invokeai/frontend/web/src/features/gallery/components/ImageGrid/GalleryImage.tsx
@@ -121,7 +121,7 @@ const buildOnClick =
121
if (currentClickedIndex < lastClickedIndex) {
122
imagesToSelect.reverse();
123
}
124
- dispatch(selectionChanged(imagesToSelect));
+ dispatch(selectionChanged(uniq(selection.concat(imagesToSelect))));
125
126
} else if (ctrlKey || metaKey) {
127
if (selection.some((n) => n === imageName) && selection.length > 1) {
0 commit comments