Skip to content

Commit

Permalink
Fix stackcounter in darkmode
Browse files Browse the repository at this point in the history
  • Loading branch information
lkellar committed Jun 25, 2021
1 parent 18a996d commit 0b0e206
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
8 changes: 4 additions & 4 deletions Trips.xcodeproj/project.pbxproj
Expand Up @@ -514,7 +514,7 @@
ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
CODE_SIGN_ENTITLEMENTS = Trips/Trips.entitlements;
CODE_SIGN_STYLE = Automatic;
CURRENT_PROJECT_VERSION = 2;
CURRENT_PROJECT_VERSION = 1;
DEAD_CODE_STRIPPING = YES;
DEVELOPMENT_ASSET_PATHS = "\"Trips/Preview Content\"";
DEVELOPMENT_TEAM = 27888865CT;
Expand All @@ -525,7 +525,7 @@
"$(inherited)",
"@executable_path/Frameworks",
);
MARKETING_VERSION = 2021.1;
MARKETING_VERSION = 2021.2;
PRODUCT_BUNDLE_IDENTIFIER = org.kellar.trips;
PRODUCT_NAME = "$(TARGET_NAME)";
SUPPORTS_MACCATALYST = NO;
Expand All @@ -540,7 +540,7 @@
ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
CODE_SIGN_ENTITLEMENTS = Trips/Trips.entitlements;
CODE_SIGN_STYLE = Automatic;
CURRENT_PROJECT_VERSION = 2;
CURRENT_PROJECT_VERSION = 1;
DEAD_CODE_STRIPPING = YES;
DEVELOPMENT_ASSET_PATHS = "\"Trips/Preview Content\"";
DEVELOPMENT_TEAM = 27888865CT;
Expand All @@ -551,7 +551,7 @@
"$(inherited)",
"@executable_path/Frameworks",
);
MARKETING_VERSION = 2021.1;
MARKETING_VERSION = 2021.2;
PRODUCT_BUNDLE_IDENTIFIER = org.kellar.trips;
PRODUCT_NAME = "$(TARGET_NAME)";
SUPPORTS_MACCATALYST = NO;
Expand Down
2 changes: 1 addition & 1 deletion Trips/views/components/StackCounter.swift
Expand Up @@ -24,7 +24,7 @@ struct StackCounter: View {
Text("\(completedCount)/\(totalCount)")
.font(.system(.body, design: .rounded))
.bold()
.foregroundColor(colorScheme == .dark ? .black : .white)
.foregroundColor(.white)
}
.padding(.trailing, 10)
}
Expand Down

0 comments on commit 0b0e206

Please sign in to comment.