# HG changeset patch # User Dennis Concepción Martín <66180929+denniscm190@users.noreply.github.com> # Date 1615645956 -3600 # Node ID 2f9845d59a595f50160be60549b7dd89435234ea # Parent cd902f3f7f33239a3e86c8c896049ca99ff1e67e Update icon section name diff -r cd902f3f7f33 -r 2f9845d59a59 LazyBear/UI/IconPicker.swift --- a/LazyBear/UI/IconPicker.swift Sat Mar 13 15:32:24 2021 +0100 +++ b/LazyBear/UI/IconPicker.swift Sat Mar 13 15:32:36 2021 +0100 @@ -10,7 +10,7 @@ struct IconPicker: View { var body: some View { List { - Section(header: Text("Without background")) { + Section(header: Text("White background")) { ForEach(icons, id: \.name) { icon in if !icon.background { IconRow(icon: icon) @@ -18,7 +18,7 @@ } } - Section(header: Text("With background")) { + Section(header: Text("Black background")) { ForEach(icons, id: \.name) { icon in if icon.background { IconRow(icon: icon)