Skip to content

Commit

Permalink
Fixed camera dimension for iPad (7th generation) (2019).
Browse files Browse the repository at this point in the history
Closes #233
  • Loading branch information
gdombiak committed Dec 15, 2019
1 parent 6926387 commit 73a16df
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions OctoPod/UIUtils.swift
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,9 @@ class UIUtils {
} else if screenHeight == 1024 {
// iPad (9.7-inch)
return (571, 348, 432, 348)
} else if screenHeight == 1080 {
// iPad (7th generation) (2019)
return (608, 414, 457, 414)
} else if screenHeight == 1112 {
// iPad (10.5-inch)
return (619, 414, 469, 414)
Expand Down

0 comments on commit 73a16df

Please sign in to comment.