From 6443e911dc9d09ea90b3a5df4ae1cd9d42047f3b Mon Sep 17 00:00:00 2001 From: Robin Date: Fri, 9 Aug 2024 10:07:50 -0400 Subject: [PATCH] Make the breakpoint a bit smaller --- src/state/CallViewModel.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/state/CallViewModel.ts b/src/state/CallViewModel.ts index 8ed61bbb..58183f16 100644 --- a/src/state/CallViewModel.ts +++ b/src/state/CallViewModel.ts @@ -533,7 +533,7 @@ export class CallViewModel extends ViewModel { // Our layouts for flat windows are better at adapting to a small width // than our layouts for narrow windows are at adapting to a small height, // so we give "flat" precedence here - if (height <= 660) return "flat"; + if (height <= 600) return "flat"; if (width <= 600) return "narrow"; return "normal"; }),