1
0
Fork 0

For #5771 - Don't force landscape mode on fullscreen

master
ekager 2019-12-03 15:47:17 +00:00 committed by Emily Kager
parent b6ba1a1611
commit 1647e07481
1 changed files with 0 additions and 4 deletions

View File

@ -6,7 +6,6 @@ package org.mozilla.fenix.browser
import android.content.Context
import android.content.Intent
import android.content.pm.ActivityInfo
import android.graphics.Color
import android.graphics.drawable.ColorDrawable
import android.os.Bundle
@ -365,12 +364,9 @@ abstract class BaseBrowserFragment : Fragment(), UserInteractionHandler, Session
FenixSnackbar.make(view.rootView, Snackbar.LENGTH_SHORT)
.setText(getString(R.string.full_screen_notification))
.show()
activity?.requestedOrientation =
ActivityInfo.SCREEN_ORIENTATION_USER_LANDSCAPE
activity?.enterToImmersiveMode()
browserToolbarView.view.visibility = View.GONE
} else {
activity?.requestedOrientation = ActivityInfo.SCREEN_ORIENTATION_USER
activity?.exitImmersiveModeIfNeeded()
(activity as? HomeActivity)?.let { activity ->
activity.themeManager.applyStatusBarTheme(activity)