mirror of
https://github.com/SimpleMobileTools/Simple-Gallery.git
synced 2024-12-22 13:34:49 +01:00
use the local variable for getting current page index
This commit is contained in:
parent
dd1dd70aa4
commit
6af43c0b81
@ -304,7 +304,7 @@ public class ViewPagerActivity extends AppCompatActivity
|
||||
}
|
||||
|
||||
private File getCurrentFile() {
|
||||
return new File(photos.get(pager.getCurrentItem()));
|
||||
return new File(photos.get(pos));
|
||||
}
|
||||
|
||||
private void addUndoBottomMargin() {
|
||||
@ -326,6 +326,7 @@ public class ViewPagerActivity extends AppCompatActivity
|
||||
@Override
|
||||
public void onPageSelected(int position) {
|
||||
updateActionbarTitle();
|
||||
pos = position;
|
||||
}
|
||||
|
||||
@Override
|
||||
|
Loading…
Reference in New Issue
Block a user