Skip to content

Commit

Permalink
fix mark size in full watch view
Browse files Browse the repository at this point in the history
  • Loading branch information
LEOYoon-Tsaw committed Jun 10, 2023
1 parent 5fe19a3 commit 133e62f
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
8 changes: 4 additions & 4 deletions Chinese Time.xcodeproj/project.pbxproj
Original file line number Diff line number Diff line change
Expand Up @@ -1535,8 +1535,8 @@
isa = XCBuildConfiguration;
buildSettings = {
ALWAYS_SEARCH_USER_PATHS = NO;
APP_BUILD = 79;
APP_VERSION = 4.2.4;
APP_BUILD = 80;
APP_VERSION = 4.2.5;
CLANG_ANALYZER_LOCALIZABILITY_NONLOCALIZED = YES;
CLANG_ANALYZER_NONNULL = YES;
CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE;
Expand Down Expand Up @@ -1603,8 +1603,8 @@
isa = XCBuildConfiguration;
buildSettings = {
ALWAYS_SEARCH_USER_PATHS = NO;
APP_BUILD = 79;
APP_VERSION = 4.2.4;
APP_BUILD = 80;
APP_VERSION = 4.2.5;
CLANG_ANALYZER_LOCALIZABILITY_NONLOCALIZED = YES;
CLANG_ANALYZER_NONNULL = YES;
CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE;
Expand Down
2 changes: 1 addition & 1 deletion Watch/WatchFaceView.swift
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@ struct Watch: View {

let _ = chineseCalendar.update(time: displayTime ?? Date(), timezone: timezone, location: location)

let (firstRingMarks, secondRingMarks, thirdRingMarks, fourthRingMarks) = allRingMarks(watchLayout: watchLayout, chineseCalendar: chineseCalendar, radius: Marks.markSize * shortEdge)
let (firstRingMarks, secondRingMarks, thirdRingMarks, fourthRingMarks) = allRingMarks(watchLayout: watchLayout, chineseCalendar: chineseCalendar, radius: Marks.markSize * shortEdge * 1.5)

let shadowDirection = chineseCalendar.currentHourInDay

Expand Down

0 comments on commit 133e62f

Please sign in to comment.