From d6f2cb759240d01bc4c7240b6f18faf69701170b Mon Sep 17 00:00:00 2001 From: AdityasahuX07 Date: Sat, 20 Dec 2025 11:02:48 +0530 Subject: [PATCH] Adjust audio track modal maximum height Increased the maximum height of the audio track modal to better utilize screen space. --- src/components/player/modals/AudioTrackModal.tsx | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/components/player/modals/AudioTrackModal.tsx b/src/components/player/modals/AudioTrackModal.tsx index ca2bbce..97ec985 100644 --- a/src/components/player/modals/AudioTrackModal.tsx +++ b/src/components/player/modals/AudioTrackModal.tsx @@ -27,9 +27,8 @@ export const AudioTrackModal: React.FC = ({ }) => { const { width, height } = useWindowDimensions(); - // Size constants matching SubtitleModal aesthetics const menuWidth = Math.min(width * 0.9, 420); - const menuMaxHeight = height * 0.8; + const menuMaxHeight = height * 0.9; const handleClose = () => setShowAudioModal(false);