Skip to content

Commit

Permalink
Merge pull request #168 from josh/xcode-workflow2
Browse files Browse the repository at this point in the history
  • Loading branch information
dgraham committed Nov 7, 2021
2 parents b9e04e2 + 18b5913 commit f2bfbf1
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/xcode.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ jobs:
strategy:
matrix:
scheme:
- "Ka-Block (iOS)"
# - "Ka-Block (iOS)"
- "Ka-Block (macOS)"

runs-on: macos-11.0
Expand All @@ -18,5 +18,5 @@ jobs:
- name: Print Xcode version
run: xcodebuild -version -sdk

- name: Test
- name: Build
run: xcodebuild -project Ka-Block.xcodeproj -scheme "${{ matrix.scheme }}" build ENABLE_HARDENED_RUNTIME=NO CODE_SIGN_STYLE=Manual CODE_SIGN_IDENTITY=
2 changes: 1 addition & 1 deletion macOS (App)/KaBlockApp.swift
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ struct KaBlockApp: App {
.frame(width: 375, height: 640)
.background(NonResizableWindow())
}
.windowStyle(.hiddenTitleBar)
.windowStyle(HiddenTitleBarWindowStyle())
}
}

Expand Down

1 comment on commit f2bfbf1

@EternalCoderss
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

on line 15 .hiddentitleBar will hide extention in title bar?

Please sign in to comment.