Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 688b0f12 authored by Eric Fischer's avatar Eric Fischer Committed by Android Git Automerger
Browse files

am 36d5aaec: Merge change 22322 into donut

Merge commit '36d5aaec' into eclair

* commit '36d5aaec':
  Add FLAG_ACTIVITY_NEW_TASK flag when adding a word to the dictionary.
parents 5f5989de 36d5aaec
Loading
Loading
Loading
Loading
+1 −0
Original line number Diff line number Diff line
@@ -7222,6 +7222,7 @@ public class TextView extends View implements ViewTreeObserver.OnPreDrawListener
                if (word != null) {
                    Intent i = new Intent("com.android.settings.USER_DICTIONARY_INSERT");
                    i.putExtra("word", word);
                    i.setFlags(i.getFlags() | Intent.FLAG_ACTIVITY_NEW_TASK);
                    getContext().startActivity(i);
                }