Skip to content
This repository has been archived by the owner on Jul 22, 2024. It is now read-only.

Commit

Permalink
Fix URL vanishes after exiting fullscreen (#909)
Browse files Browse the repository at this point in the history
  • Loading branch information
MortimerGoro authored and bluemarvin committed Dec 20, 2018
1 parent 4b02aea commit e58f70c
Showing 1 changed file with 0 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -646,9 +646,6 @@ public void onPageStart(GeckoSession aSession, String aUri) {
if (mReloadButton != null) {
mReloadButton.setImageResource(R.drawable.ic_icon_exit);
}
if (mIsInFullScreenMode && !mIsResizing) {
AnimationHelper.fadeIn(mURLBar, 0, null);
}
}

@Override
Expand All @@ -658,9 +655,6 @@ public void onPageStop(GeckoSession aSession, boolean b) {
if (mReloadButton != null) {
mReloadButton.setImageResource(R.drawable.ic_icon_reload);
}
if (mIsInFullScreenMode) {
AnimationHelper.fadeOut(mURLBar, 0, null);
}
}

@Override
Expand Down

0 comments on commit e58f70c

Please sign in to comment.