Skip to content

Commit

Permalink
Merge pull request #16504 from iterate-ch/bugfix/GH-16503
Browse files Browse the repository at this point in the history
Fix #16503.
  • Loading branch information
dkocher authored Nov 7, 2024
2 parents edfb2fa + 58c6b6b commit b40b014
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -356,7 +356,7 @@ public void outlineView_willDisplayCell_forTableColumn_item(final NSOutlineView
final TransferItem file = cache.lookup(new NSObjectTransferItemReference(item));
final TransferStatus status = browserModel.getStatus(file);
if(identifier.equals(TransferPromptDataSource.Column.include.name())) {
cell.setEnabled(!status.isRejected() && status.isExists());
cell.setEnabled(!status.isRejected());
}
if(identifier.equals(TransferPromptDataSource.Column.filename.name())) {
(Rococoa.cast(cell, OutlineCell.class)).setIcon(IconCacheFactory.<NSImage>get().fileIcon(file.remote, 16));
Expand Down

0 comments on commit b40b014

Please sign in to comment.