1
0
Fork 0

fixed importing not working when the Settings are accessed using a hotkey or an on-screen key

This commit is contained in:
sspanak 2024-08-13 14:22:22 +03:00 committed by Dimo Karaivanov
parent 7fa4685c51
commit f0b7915aa6

View file

@ -27,7 +27,6 @@ public class UI {
Intent prefIntent = new Intent(ims, PreferencesActivity.class); Intent prefIntent = new Intent(ims, PreferencesActivity.class);
prefIntent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK); prefIntent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
prefIntent.addFlags(Intent.FLAG_ACTIVITY_CLEAR_TASK); prefIntent.addFlags(Intent.FLAG_ACTIVITY_CLEAR_TASK);
prefIntent.addFlags(Intent.FLAG_ACTIVITY_NO_HISTORY);
ims.startActivity(prefIntent); ims.startActivity(prefIntent);
} }