Skip to content

Commit 5af7f45

Browse files
committed
Use system images.
1 parent 5d882b9 commit 5af7f45

File tree

1 file changed

+12
-2
lines changed

1 file changed

+12
-2
lines changed

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

Lines changed: 12 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3599,8 +3599,18 @@ public NSImage image() {
35993599
}
36003600
},
36013601
bookmarks,
3602-
history,
3603-
rendezvous;
3602+
history {
3603+
@Override
3604+
public NSImage image() {
3605+
return IconCacheFactory.<NSImage>get().iconNamed("history", 16);
3606+
}
3607+
},
3608+
rendezvous {
3609+
@Override
3610+
public NSImage image() {
3611+
return IconCacheFactory.<NSImage>get().iconNamed("bonjour", 16);
3612+
}
3613+
};
36043614

36053615
public static BookmarkSwitchSegement byPosition(final int position) {
36063616
return BookmarkSwitchSegement.values()[position];

0 commit comments

Comments
 (0)