revert back behavior

This commit is contained in:
luvletter2333 2022-07-12 22:29:22 +08:00
parent 8f4741f8ab
commit 31abbbbddd
No known key found for this signature in database
GPG Key ID: A26A8880836E1978
1 changed files with 4 additions and 1 deletions

View File

@ -4579,7 +4579,10 @@ public class DialogsActivity extends BaseFragment implements NotificationCenter.
return false; return false;
} else if (filterTabsView != null && filterTabsView.getVisibility() == View.VISIBLE && !tabsAnimationInProgress && !filterTabsView.isAnimatingIndicator() } else if (filterTabsView != null && filterTabsView.getVisibility() == View.VISIBLE && !tabsAnimationInProgress && !filterTabsView.isAnimatingIndicator()
&& !startedTracking && !filterTabsView.isFirstTabSelected()) { && !startedTracking && !filterTabsView.isFirstTabSelected()) {
// NekoX: remove scroll tabs when press back if (!NekoConfig.hideAllTab.Bool()){
filterTabsView.selectFirstTab();
return false;
}
} else if (commentView != null && commentView.isPopupShowing()) { } else if (commentView != null && commentView.isPopupShowing()) {
commentView.hidePopup(true); commentView.hidePopup(true);
return false; return false;