keep pip as it was before on mobile
This commit is contained in:
@@ -63,7 +63,7 @@ import {
|
|||||||
playReactionsSound,
|
playReactionsSound,
|
||||||
showReactions,
|
showReactions,
|
||||||
} from "../../settings/settings";
|
} from "../../settings/settings";
|
||||||
import { isFirefox } from "../../Platform";
|
import { isFirefox, platform } from "../../Platform";
|
||||||
import { setPipEnabled$ } from "../../controls";
|
import { setPipEnabled$ } from "../../controls";
|
||||||
import { TileStore } from "../TileStore";
|
import { TileStore } from "../TileStore";
|
||||||
import { gridLikeLayout } from "../GridLikeLayout";
|
import { gridLikeLayout } from "../GridLikeLayout";
|
||||||
@@ -1271,7 +1271,7 @@ export function createCallViewModel$(
|
|||||||
switchMap((mode) => {
|
switchMap((mode) => {
|
||||||
switch (mode) {
|
switch (mode) {
|
||||||
case "pip":
|
case "pip":
|
||||||
return of(true);
|
return of(platform === "desktop" ? true : false);
|
||||||
case "normal":
|
case "normal":
|
||||||
case "narrow":
|
case "narrow":
|
||||||
return of(true);
|
return of(true);
|
||||||
|
|||||||
@@ -5,6 +5,7 @@ SPDX-License-Identifier: AGPL-3.0-only OR LicenseRef-Element-Commercial
|
|||||||
Please see LICENSE in the repository root for full details.
|
Please see LICENSE in the repository root for full details.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
import { platform } from "../Platform.ts";
|
||||||
import { type PipLayout, type PipLayoutMedia } from "./layout-types.ts";
|
import { type PipLayout, type PipLayoutMedia } from "./layout-types.ts";
|
||||||
import { type TileStore } from "./TileStore";
|
import { type TileStore } from "./TileStore";
|
||||||
|
|
||||||
@@ -16,8 +17,11 @@ export function pipLayout(
|
|||||||
prevTiles: TileStore,
|
prevTiles: TileStore,
|
||||||
): [PipLayout, TileStore] {
|
): [PipLayout, TileStore] {
|
||||||
const update = prevTiles.from(0);
|
const update = prevTiles.from(0);
|
||||||
// Dont maximise in pip since we want the rounded corners and the footer
|
// Dont maximise in pip on EW since we want the rounded corners and the footer
|
||||||
update.registerSpotlight(media.spotlight, false);
|
update.registerSpotlight(
|
||||||
|
media.spotlight,
|
||||||
|
platform === "desktop" ? false : true,
|
||||||
|
);
|
||||||
const tiles = update.build();
|
const tiles = update.build();
|
||||||
return [
|
return [
|
||||||
{
|
{
|
||||||
|
|||||||
Reference in New Issue
Block a user