Commit ab9ca18c authored by Alex Catarineu's avatar Alex Catarineu
Browse files

Bug 40061: Do not show "Send to device" in sharing menu

parent 74d55403
Loading
Loading
Loading
Loading
+0 −7
Original line number Diff line number Diff line
@@ -35,7 +35,6 @@ class ShareFragment : AppCompatDialogFragment() {
    }
    private lateinit var shareInteractor: ShareInteractor
    private lateinit var shareCloseView: ShareCloseView
    private lateinit var shareToAccountDevicesView: ShareToAccountDevicesView
    private lateinit var shareToAppsView: ShareToAppsView

    override fun onAttach(context: Context) {
@@ -90,9 +89,6 @@ class ShareFragment : AppCompatDialogFragment() {
        )

        view.shareWrapper.setOnClickListener { shareInteractor.onShareClosed() }
        shareToAccountDevicesView =
            ShareToAccountDevicesView(view.devicesShareLayout, shareInteractor)

        if (args.showPage) {
            // Show the previous fragment underneath the share background scrim
            // by making it translucent.
@@ -111,9 +107,6 @@ class ShareFragment : AppCompatDialogFragment() {

    override fun onViewCreated(view: View, savedInstanceState: Bundle?) {
        super.onViewCreated(view, savedInstanceState)
        viewModel.devicesList.observe(viewLifecycleOwner) { devicesShareOptions ->
            shareToAccountDevicesView.setShareTargets(devicesShareOptions)
        }
        viewModel.appsList.observe(viewLifecycleOwner) { appsToShareTo ->
            shareToAppsView.setShareTargets(appsToShareTo)
        }