diff options
| author | Po Lu | 2023-12-07 13:26:41 +0800 |
|---|---|---|
| committer | Po Lu | 2023-12-07 13:26:41 +0800 |
| commit | 48965d0862751131eb873b71e39c70e97a683eaa (patch) | |
| tree | 829bf52f55a980a3154b922a2cb46e4120ac05f9 /java | |
| parent | 451e00e7862122e768db553034b2ed734629e6ba (diff) | |
| download | emacs-48965d0862751131eb873b71e39c70e97a683eaa.tar.gz emacs-48965d0862751131eb873b71e39c70e97a683eaa.zip | |
Prevent closing Emacs frames upon locale changes
* java/AndroidManifest.xml.in: Express that Emacs can respond
to locale and fontScale changes.
Diffstat (limited to 'java')
| -rw-r--r-- | java/AndroidManifest.xml.in | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/java/AndroidManifest.xml.in b/java/AndroidManifest.xml.in index 2749f43c245..18afe945df6 100644 --- a/java/AndroidManifest.xml.in +++ b/java/AndroidManifest.xml.in | |||
| @@ -94,7 +94,7 @@ along with GNU Emacs. If not, see <https://www.gnu.org/licenses/>. --> | |||
| 94 | android:launchMode="singleInstance" | 94 | android:launchMode="singleInstance" |
| 95 | android:windowSoftInputMode="adjustResize" | 95 | android:windowSoftInputMode="adjustResize" |
| 96 | android:exported="true" | 96 | android:exported="true" |
| 97 | android:configChanges="orientation|screenSize|screenLayout|keyboardHidden"> | 97 | android:configChanges="orientation|screenSize|screenLayout|keyboardHidden|locale|fontScale"> |
| 98 | <intent-filter> | 98 | <intent-filter> |
| 99 | <action android:name="android.intent.action.MAIN" /> | 99 | <action android:name="android.intent.action.MAIN" /> |
| 100 | <category android:name="android.intent.category.DEFAULT" /> | 100 | <category android:name="android.intent.category.DEFAULT" /> |
| @@ -149,7 +149,7 @@ along with GNU Emacs. If not, see <https://www.gnu.org/licenses/>. --> | |||
| 149 | <activity android:name="org.gnu.emacs.EmacsMultitaskActivity" | 149 | <activity android:name="org.gnu.emacs.EmacsMultitaskActivity" |
| 150 | android:windowSoftInputMode="adjustResize" | 150 | android:windowSoftInputMode="adjustResize" |
| 151 | android:exported="true" | 151 | android:exported="true" |
| 152 | android:configChanges="orientation|screenSize|screenLayout|keyboardHidden"/> | 152 | android:configChanges="orientation|screenSize|screenLayout|keyboardHidden|locale|fontScale"/> |
| 153 | 153 | ||
| 154 | <activity android:autoRemoveFromRecents="true" | 154 | <activity android:autoRemoveFromRecents="true" |
| 155 | android:label="Emacs options" | 155 | android:label="Emacs options" |