Skip to content

Commit

Permalink
[TIMOB-18244]: Fix a crash adding map
Browse files Browse the repository at this point in the history
  • Loading branch information
hieupham007 committed Mar 19, 2015
1 parent 6d8bd3d commit 3c79460
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -50,7 +50,7 @@ public boolean dispatchTouchEvent(MotionEvent ev)
FragmentTransaction transaction = manager.beginTransaction();
fragment = createFragment();
transaction.add(container.getId(), fragment);
transaction.commit();
transaction.commitAllowingStateLoss();
}
// initialize handler
handler = new Handler(TiMessenger.getMainMessenger().getLooper(), this);
Expand Down

0 comments on commit 3c79460

Please sign in to comment.