# HG changeset patch # User Dennis Concepción Martín <66180929+denniscm190@users.noreply.github.com> # Date 1614537528 0 # Node ID aff36490ae4d0a89635db1cbcac6eb364ca82e2e # Parent dac0c8a7d92d224dd677dd0abc374d52aae14564 Fix bug color and EitButton diff -r dac0c8a7d92d -r aff36490ae4d LazyBear.xcodeproj/project.xcworkspace/xcuserdata/dennis.xcuserdatad/UserInterfaceState.xcuserstate Binary file LazyBear.xcodeproj/project.xcworkspace/xcuserdata/dennis.xcuserdatad/UserInterfaceState.xcuserstate has changed diff -r dac0c8a7d92d -r aff36490ae4d LazyBear/UI/CompanyRow.swift --- 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()) diff -r dac0c8a7d92d -r aff36490ae4d LazyBear/UI/Watchlist.swift --- 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 + @Environment(\.editMode) var mode var body: some View { NavigationView {