Prevent backgrounds from showing up when displaying symbol icons. Fixes #2523

This commit is contained in:
Maurice Parker
2020-10-24 18:15:59 -05:00
parent 64bb2e58e9
commit 6d9dcecd81
3 changed files with 10 additions and 8 deletions

View File

@@ -25,9 +25,11 @@ final class IconImage {
}()
let image: RSImage
init(_ image: RSImage) {
let isSymbol: Bool
init(_ image: RSImage, isSymbol: Bool = false) {
self.image = image
self.isSymbol = isSymbol
}
}