Change launchMode of Accounts activity
startActivityForResult() doesn't work if the launchMode is "singleInstance". But we need this when selecting a file to import the settings from.
This commit is contained in:
parent
fc8d2e9979
commit
115742a2a9
1 changed files with 1 additions and 1 deletions
|
@ -67,7 +67,7 @@
|
||||||
|
|
||||||
<activity
|
<activity
|
||||||
android:name="com.fsck.k9.activity.Accounts"
|
android:name="com.fsck.k9.activity.Accounts"
|
||||||
android:launchMode="singleInstance"
|
android:launchMode="singleTask"
|
||||||
android:configChanges="locale"
|
android:configChanges="locale"
|
||||||
android:label="@string/app_name">
|
android:label="@string/app_name">
|
||||||
<intent-filter>
|
<intent-filter>
|
||||||
|
|
Loading…
Reference in a new issue