changeset 263:2f9845d59a59

Update icon section name
author Dennis Concepción Martín <66180929+denniscm190@users.noreply.github.com>
date Sat, 13 Mar 2021 15:32:36 +0100
parents cd902f3f7f33
children 9e3c7d7fcbff
files LazyBear/UI/IconPicker.swift
diffstat 1 files changed, 2 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- 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)