From 9ce9e6e45864bc745a35b1b6ea462ab1e8a18f6d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Stephan=20A=C3=9Fmus?= Date: Mon, 13 Jul 2009 20:04:06 +0000 Subject: [PATCH] Resetting the width/height and aspect all at once in my last commit was buggy. git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@31542 a95241bf-73f2-0310-859d-f6bbb57e9c96 --- src/apps/mediaplayer/MainWin.cpp | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/apps/mediaplayer/MainWin.cpp b/src/apps/mediaplayer/MainWin.cpp index 5a9efa15ef..4b89a37afa 100644 --- a/src/apps/mediaplayer/MainWin.cpp +++ b/src/apps/mediaplayer/MainWin.cpp @@ -597,8 +597,7 @@ MainWin::MessageReceived(BMessage *msg) int heightAspect; fController->GetSize(&width, &height, &widthAspect, &heightAspect); - VideoFormatChange(width, fSourceHeight, - widthAspect, heightAspect); + VideoFormatChange(width, height, widthAspect, heightAspect); } break;