Use standard folder icons in the main window’s source list.

This commit is contained in:
Brent Simmons 2017-12-27 18:04:36 -08:00
parent e875473a1c
commit 25ed41aacc

View File

@ -526,3 +526,10 @@ extension Feed: SmallIconProvider {
}
}
extension Folder: SmallIconProvider {
var smallIcon: NSImage? {
return NSImage(named: NSImage.Name.folder)
}
}