This commit is contained in:
Eric House 2016-07-20 08:51:31 -07:00
parent c0bef59aad
commit d3bd8047b1

View file

@ -272,10 +272,10 @@ public class MainActivity extends XWActivity
if ( 0 == fragCount ) { if ( 0 == fragCount ) {
finish(); finish();
} else if ( fragCount == m_root.getChildCount() - 1 ) { } else if ( fragCount == m_root.getChildCount() - 1 ) {
// View child = m_root.getChildAt( fragCount ); View child = m_root.getChildAt( fragCount );
// DbgUtils.logf( "onBackStackChanged(): removing view with id %x", // DbgUtils.logf( "onBackStackChanged(): removing view with id %x",
// child.getId() ); // child.getId() );
m_root.removeViewAt( fragCount ); m_root.removeView( child );
setVisiblePanes(); setVisiblePanes();
} }
} }