We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 742d5de commit 8156571Copy full SHA for 8156571
1 file changed
app/src/main/java/com/termux/app/TermuxActivity.java
@@ -6,6 +6,7 @@
6
import android.content.BroadcastReceiver;
7
import android.content.ComponentName;
8
import android.content.Context;
9
+import android.content.res.Configuration;
10
import android.content.Intent;
11
import android.content.IntentFilter;
12
import android.content.ServiceConnection;
@@ -323,6 +324,12 @@ public void onResume() {
323
324
mIsOnResumeAfterOnCreate = false;
325
}
326
327
+ @Override
328
+ public void onConfigurationChanged(@NonNull Configuration newConfig) {
329
+ super.onConfigurationChanged(newConfig);
330
+ updateExtraKeysVisibility();
331
+ }
332
+
333
@Override
334
protected void onStop() {
335
super.onStop();
0 commit comments