Setting FLAG_ACTIVITY_SINGLE_TOP for notification intents fixes

display problems with GamesList in dual-pane mode, I think because it
prevents stacked activities. Need to figure out if it introduces
problems elsewhere.
This commit is contained in:
Eric House 2016-07-13 12:35:54 -07:00
parent 9cfed0be8b
commit a7013f3ede

View file

@ -2503,7 +2503,7 @@ public class GamesListDelegate extends ListDelegateBase
{
Intent intent = new Intent( context, MainActivity.class );
intent.setFlags( Intent.FLAG_ACTIVITY_CLEAR_TOP
| Intent.FLAG_ACTIVITY_NEW_TASK );
| Intent.FLAG_ACTIVITY_SINGLE_TOP );
return intent;
}