Skip to content

Commit 8355884

Browse files
committed
Remove fill in symbols.
1 parent 7eb6ce0 commit 8355884

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

osx/src/main/java/ch/cyberduck/ui/cocoa/controller/ProgressController.java

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -340,17 +340,17 @@ public void setIconImageView(final NSImageView iconImageView) {
340340
if(!Factory.Platform.osversion.matches("(10)\\..*")) {
341341
switch(transfer.getType()) {
342342
case download:
343-
this.iconImageView.setImage(IconCacheFactory.<NSImage>get().iconNamed("square.and.arrow.down.fill", 64));
343+
this.iconImageView.setImage(IconCacheFactory.<NSImage>get().iconNamed("square.and.arrow.down", 64));
344344
break;
345345
case upload:
346-
this.iconImageView.setImage(IconCacheFactory.<NSImage>get().iconNamed("square.and.arrow.up.fill", 64));
346+
this.iconImageView.setImage(IconCacheFactory.<NSImage>get().iconNamed("square.and.arrow.up", 64));
347347
break;
348348
case sync:
349-
this.iconImageView.setImage(IconCacheFactory.<NSImage>get().iconNamed("arrow.up.and.down.square.fill", 64));
349+
this.iconImageView.setImage(IconCacheFactory.<NSImage>get().iconNamed("arrow.up.and.down.square", 64));
350350
break;
351351
case copy:
352352
case move:
353-
this.iconImageView.setImage(IconCacheFactory.<NSImage>get().iconNamed("arrow.left.and.right.square.fill", 64));
353+
this.iconImageView.setImage(IconCacheFactory.<NSImage>get().iconNamed("arrow.left.and.right.square", 64));
354354
break;
355355
}
356356
}

0 commit comments

Comments
 (0)