Revert "Making it so the fab doesnt reappear when the notes is in edit mode"
This reverts commit 870ac2b946
.
This commit is contained in:
parent
38e035d792
commit
737aa95bf5
|
@ -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(
|
||||
|
|
|
@ -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);
|
||||
|
|
Loading…
Reference in New Issue