Revert "Making it so the fab doesnt reappear when the notes is in edit mode"

This reverts commit 870ac2b946.
This commit is contained in:
LucasGGamerM 2023-01-22 15:19:52 -03:00
parent 38e035d792
commit 737aa95bf5
2 changed files with 2 additions and 6 deletions

View File

@ -286,7 +286,7 @@ public abstract class BaseStatusListFragment<T extends DisplayItemsParent> exten
currentPhotoViewer.offsetView(-dx, -dy);
if (fab!=null) {
if (dy >= 0 ) {
if (dy > 0 ) {
if (isScrollingUp) {
fab.setVisibility(View.INVISIBLE);
TranslateAnimation animate = new TranslateAnimation(

View File

@ -386,11 +386,7 @@ public class ProfileFragment extends LoaderFragment implements OnBackPressedList
if(mediaFragment.loaded)
mediaFragment.onRefresh();
}
// if(noteEdit.hasFocus()){
// V.setVisibilityAnimated(fab, View.GONE);
// }else{
// V.setVisibilityAnimated(fab, View.VISIBLE);
// }
V.setVisibilityAnimated(fab, View.VISIBLE);
}
})
.exec(accountID);