Mercurial > public > lazybear
changeset 227:aff36490ae4d
Fix bug color and EitButton
author | Dennis Concepción Martín <66180929+denniscm190@users.noreply.github.com> |
---|---|
date | Sun, 28 Feb 2021 18:38:48 +0000 |
parents | dac0c8a7d92d |
children | 74686b4a0fde |
files | LazyBear.xcodeproj/project.xcworkspace/xcuserdata/dennis.xcuserdatad/UserInterfaceState.xcuserstate LazyBear/UI/CompanyRow.swift LazyBear/UI/Watchlist.swift |
diffstat | 3 files changed, 1 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
Binary file LazyBear.xcodeproj/project.xcworkspace/xcuserdata/dennis.xcuserdatad/UserInterfaceState.xcuserstate has changed
--- a/LazyBear/UI/CompanyRow.swift Sun Feb 28 18:10:32 2021 +0000 +++ b/LazyBear/UI/CompanyRow.swift Sun Feb 28 18:38:48 2021 +0000 @@ -22,7 +22,6 @@ RoundedRectangle(cornerRadius: 15) .foregroundColor(Color("\(theme)Row\(rowNumber)")) .frame(width: 10) - .offset(x: -25) VStack(alignment: .leading) { Text(symbol.uppercased())
--- a/LazyBear/UI/Watchlist.swift Sun Feb 28 18:10:32 2021 +0000 +++ b/LazyBear/UI/Watchlist.swift Sun Feb 28 18:38:48 2021 +0000 @@ -12,6 +12,7 @@ @ObservedObject var hudManager: HUDManager @Environment(\.managedObjectContext) private var moc @FetchRequest(entity: Company.entity(), sortDescriptors: []) var companies: FetchedResults<Company> + @Environment(\.editMode) var mode var body: some View { NavigationView {