Skip to content

Commit

Permalink
scribe-org#396 minor code formatting and adding in changelog entry
Browse files Browse the repository at this point in the history
  • Loading branch information
andrewtavis committed Mar 21, 2024
1 parent 8dc1444 commit 91806c2
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
3 changes: 2 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,8 @@ Emojis for the following are chosen based on [gitmoji](https://gitmoji.dev/).
### 🐞 Bug Fixes

- The transition from between portrait and landscape mode was dramatically improved ([#25](https://github.com/scribe-org/Scribe-iOS/issues/33)).
<!-- - Bugs were fixed that were causing the autocompletions to trigger to regularly. -->
- Annotations under autosuggestions and autocompletions are no longer distorted during an orientation transition ([#396](https://github.com/scribe-org/Scribe-iOS/issues/396)).
<!-- - Bugs were fixed that were causing the autocompletions to trigger too regularly. -->

### ♻️ Code Refactoring

Expand Down
2 changes: 1 addition & 1 deletion Keyboards/KeyboardsBase/KeyboardViewController.swift
Original file line number Diff line number Diff line change
Expand Up @@ -206,7 +206,7 @@ class KeyboardViewController: UIInputViewController {
/// - A call to loadKeys to reload the display after an orientation change
override func viewWillTransition(to size: CGSize, with coordinator: UIViewControllerTransitionCoordinator) {
super.viewWillTransition(to: size, with: coordinator)
coordinator.animate(alongsideTransition: { (context) in
coordinator.animate(alongsideTransition: { _ in
self.updateViewConstraints()
self.loadKeys()
})
Expand Down

0 comments on commit 91806c2

Please sign in to comment.