Skip to content

Commit

Permalink
Minor fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
superhighfives committed Mar 5, 2021
1 parent 91d7654 commit 5c8ba79
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 6 deletions.
8 changes: 4 additions & 4 deletions Pika.xcodeproj/project.pbxproj
Original file line number Diff line number Diff line change
Expand Up @@ -575,7 +575,7 @@
CODE_SIGN_IDENTITY = "Apple Development";
CODE_SIGN_STYLE = Automatic;
COMBINE_HIDPI_IMAGES = YES;
CURRENT_PROJECT_VERSION = 16;
CURRENT_PROJECT_VERSION = 17;
DEVELOPMENT_ASSET_PATHS = "\"Pika/Preview Content\"";
DEVELOPMENT_TEAM = TGHU37N6EX;
ENABLE_HARDENED_RUNTIME = YES;
Expand All @@ -586,7 +586,7 @@
"@executable_path/../Frameworks",
);
MACOSX_DEPLOYMENT_TARGET = 10.15;
MARKETING_VERSION = "0.0.10-beta2";
MARKETING_VERSION = "0.0.10-beta3";
PRODUCT_BUNDLE_IDENTIFIER = com.superhighfives.Pika;
PRODUCT_NAME = "$(TARGET_NAME)";
SWIFT_VERSION = 5.0;
Expand All @@ -602,7 +602,7 @@
CODE_SIGN_IDENTITY = "Apple Development";
CODE_SIGN_STYLE = Automatic;
COMBINE_HIDPI_IMAGES = YES;
CURRENT_PROJECT_VERSION = 16;
CURRENT_PROJECT_VERSION = 17;
DEVELOPMENT_ASSET_PATHS = "\"Pika/Preview Content\"";
DEVELOPMENT_TEAM = TGHU37N6EX;
ENABLE_HARDENED_RUNTIME = YES;
Expand All @@ -613,7 +613,7 @@
"@executable_path/../Frameworks",
);
MACOSX_DEPLOYMENT_TARGET = 10.15;
MARKETING_VERSION = "0.0.10-beta2";
MARKETING_VERSION = "0.0.10-beta3";
PRODUCT_BUNDLE_IDENTIFIER = com.superhighfives.Pika;
PRODUCT_NAME = "$(TARGET_NAME)";
SWIFT_VERSION = 5.0;
Expand Down
3 changes: 2 additions & 1 deletion Pika/Views/KeyboardShortcutGrid.swift
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ struct KeyboardShortcutGrid: View {
let height = geometry.size.height

let horizontalUnit = width / 2
let verticalUnit = height / 3
let verticalUnit = floor(height / 3)

VStack(spacing: 0.0) {
HStack(spacing: 0.0) {
Expand Down Expand Up @@ -80,6 +80,7 @@ struct KeyboardShortcutGrid: View {
}

Divider()
.offset(y: 1)
}
}
}
Expand Down
2 changes: 1 addition & 1 deletion Pika/Views/NavigationMenu.swift
Original file line number Diff line number Diff line change
Expand Up @@ -24,10 +24,10 @@ struct NavigationMenu: View {
.menuStyle(BorderlessButtonMenuStyle(showsMenuIndicator: true))
.onAppear {
if !once {
self.showMenu.toggle()
DispatchQueue.main.asyncAfter(deadline: .now() + 0.1) {
self.showMenu.toggle()
}
self.showMenu.toggle()
}
once = true
}
Expand Down

0 comments on commit 5c8ba79

Please sign in to comment.