diff --git a/app/src/main/java/com/gh4a/fragment/IssueFragmentBase.java b/app/src/main/java/com/gh4a/fragment/IssueFragmentBase.java index 287ef4c8f..6325f4d52 100644 --- a/app/src/main/java/com/gh4a/fragment/IssueFragmentBase.java +++ b/app/src/main/java/com/gh4a/fragment/IssueFragmentBase.java @@ -161,9 +161,10 @@ public View onCreateView(LayoutInflater inflater, ViewGroup container, @Override public void onViewCreated(View view, Bundle savedInstanceState) { super.onViewCreated(view, savedInstanceState); - // We make the content container visible so that the issue/PR can be read while the rest - // of the conversation is still loading - view.findViewById(R.id.content_container).setVisibility(View.VISIBLE); + // We want to make the user able to read the issue/PR while the rest of the conversation is still loading + if (mInitialComment == null) { + view.findViewById(R.id.content_container).setVisibility(View.VISIBLE); + } BaseActivity activity = getBaseActivity(); activity.addAppBarOffsetListener(mBottomSheet);