Android: Fix possible crash in memory card editor
This commit is contained in:
parent
4c3d2cd3fe
commit
dd130c2132
|
@ -242,7 +242,7 @@ public class MemoryCardEditorActivity extends AppCompatActivity {
|
||||||
if (cards.isEmpty())
|
if (cards.isEmpty())
|
||||||
return;
|
return;
|
||||||
|
|
||||||
if (newSelection < 0) {
|
if (newSelection < 0 || newSelection >= tabLayout.getTabCount()) {
|
||||||
if (oldPos < cards.size())
|
if (oldPos < cards.size())
|
||||||
tabLayout.getTabAt(oldPos).select();
|
tabLayout.getTabAt(oldPos).select();
|
||||||
else
|
else
|
||||||
|
|
Loading…
Reference in New Issue