Skip to content

Commit

Permalink
filter by isEncodeImage
Browse files Browse the repository at this point in the history
  • Loading branch information
yunica committed Oct 3, 2023
1 parent dddc792 commit 211c8ae
Showing 1 changed file with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,9 @@ public SamImageGrid(int maxWidth) {
}

public void addSamImage(SamImage samImage) {
samImageList.add(samImage);
if (samImage.isEncodeImage()) {
samImageList.add(samImage);
}
updateJpanel();
}

Expand Down

0 comments on commit 211c8ae

Please sign in to comment.