From a5b4375aa5d4f2f0d10a0b41df2ecbc532df84cf Mon Sep 17 00:00:00 2001 From: CJ <38697367+imisshtml@users.noreply.github.com> Date: Mon, 4 Nov 2019 19:29:50 -0500 Subject: [PATCH] MM-19599 Updated Channel Nav Bar height (#3509) During the landscape changes from the previous release, I had added 8px of padding to the iOS landscape, which caused this issue to occur. This change reverts the added padding so that the height matches across the screens for the navigation bar. To note, react-native-navigation is used for the info/thread headers and there is no way to adjust the height of this without replacing the header entirley. --- app/constants/view.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/constants/view.js b/app/constants/view.js index e148c0bb8..9bb077a31 100644 --- a/app/constants/view.js +++ b/app/constants/view.js @@ -110,7 +110,7 @@ export default { MAX_CHANNELNAME_LENGTH: 64, ANDROID_TOP_LANDSCAPE: 46, ANDROID_TOP_PORTRAIT: 56, - IOS_TOP_LANDSCAPE: 40, + IOS_TOP_LANDSCAPE: 32, IOS_TOP_PORTRAIT: 64, IOS_INSETS_TOP_PORTRAIT: 88, STATUS_BAR_HEIGHT: 20,