keep pip as it was before on mobile

This commit is contained in:
Timo K
2026-03-09 13:42:47 +01:00
parent 38382539ad
commit 273eedd256
2 changed files with 8 additions and 4 deletions

View File

@@ -63,7 +63,7 @@ import {
playReactionsSound,
showReactions,
} from "../../settings/settings";
import { isFirefox } from "../../Platform";
import { isFirefox, platform } from "../../Platform";
import { setPipEnabled$ } from "../../controls";
import { TileStore } from "../TileStore";
import { gridLikeLayout } from "../GridLikeLayout";
@@ -1271,7 +1271,7 @@ export function createCallViewModel$(
switchMap((mode) => {
switch (mode) {
case "pip":
return of(true);
return of(platform === "desktop" ? true : false);
case "normal":
case "narrow":
return of(true);