some fixes

This commit is contained in:
Thomas 2022-06-24 08:57:17 +02:00
parent 81a3b47134
commit 3068dea862

View file

@ -587,7 +587,6 @@ public abstract class BaseMainActivity extends BaseActivity implements NetworkSt
});
}
binding.bottomNavView.setOnItemSelectedListener(item -> {
int itemId = item.getItemId();
int position = BottomMenu.getPosition(bottomMenu, itemId);
if (position >= 0) {
@ -878,7 +877,6 @@ public abstract class BaseMainActivity extends BaseActivity implements NetworkSt
* Allow to scroll to top for bottom navigation items
*/
private void scrollToTop() {
if (binding.viewPager.getAdapter() != null) {
Fragment fragment = getSupportFragmentManager().findFragmentByTag("f" + binding.viewPager.getCurrentItem());
if (fragment instanceof FragmentMastodonTimeline) {
FragmentMastodonTimeline fragmentMastodonTimeline = ((FragmentMastodonTimeline) fragment);
@ -894,7 +892,6 @@ public abstract class BaseMainActivity extends BaseActivity implements NetworkSt
fragmentNotificationContainer.scrollToTop();
}
}
}
@Override