mirror of
https://github.com/WinampDesktop/winamp.git
synced 2025-04-30 08:15:41 -04:00
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())
|
||||
return;
|
||||
|
||||
if (newSelection < 0) {
|
||||
if (newSelection < 0 || newSelection >= tabLayout.getTabCount()) {
|
||||
if (oldPos < cards.size())
|
||||
tabLayout.getTabAt(oldPos).select();
|
||||
else
|
||||
|
Loading…
x
Reference in New Issue
Block a user