From 6857a61e9cfac770612ad27f79bc1dab003cba05 Mon Sep 17 00:00:00 2001 From: Richie McIlroy <33632126+richiemcilroy@users.noreply.github.com> Date: Thu, 21 Mar 2024 00:51:32 +0000 Subject: [PATCH] fix: max_screen_width adjustment --- apps/desktop/src-tauri/src/media.rs | 3 --- 1 file changed, 3 deletions(-) diff --git a/apps/desktop/src-tauri/src/media.rs b/apps/desktop/src-tauri/src/media.rs index 84cfb376d..26bdb7e7f 100644 --- a/apps/desktop/src-tauri/src/media.rs +++ b/apps/desktop/src-tauri/src/media.rs @@ -66,9 +66,6 @@ impl MediaRecorder { let mut h = max_screen_height; if max_screen_width > 4000 { - w = max_screen_width / 3; - h = max_screen_height / 3; - } else if max_screen_width > 2000 { w = max_screen_width / 2; h = max_screen_height / 2; }