diff options
author | Samuel Newman <mozzius@protonmail.com> | 2024-06-11 20:50:56 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-06-11 12:50:56 -0700 |
commit | 3d4b390a8a9c4a7c52354a0c7bd4bc0a8e12f9f8 (patch) | |
tree | 3ab59acd7cda6b1447df45d6e1518069fca985bb /src/App.native.tsx | |
parent | aca0fa23ec72d66c7de44c5079dae188221f0378 (diff) | |
download | voidsky-3d4b390a8a9c4a7c52354a0c7bd4bc0a8e12f9f8.tar.zst |
Only enable keyboard controller when necessary (#4483)
* Only enable keyboard controller when necessary * make it screen only * rm keyboard padding * rm keyboardpadding file * revert using keyboard controller in composer * remove styles.outer (unnecessary for revert) * continue to use keyboard padding in the report dialog for dms --------- Co-authored-by: Hailey <me@haileyok.com>
Diffstat (limited to 'src/App.native.tsx')
-rw-r--r-- | src/App.native.tsx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/App.native.tsx b/src/App.native.tsx index b359ad911..5b2071e10 100644 --- a/src/App.native.tsx +++ b/src/App.native.tsx @@ -143,7 +143,7 @@ function App() { * that is set up in the InnerApp component above. */ return ( - <KeyboardProvider enabled={true} statusBarTranslucent={true}> + <KeyboardProvider enabled={false} statusBarTranslucent={true}> <SessionProvider> <ShellStateProvider> <PrefsStateProvider> |