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
This commit is contained in:
Stephan Aßmus
2009-07-13 20:04:06 +00:00
parent f186fa405c
commit 9ce9e6e458
+1 -2
View File
@@ -597,8 +597,7 @@ MainWin::MessageReceived(BMessage *msg)
int heightAspect; int heightAspect;
fController->GetSize(&width, &height, fController->GetSize(&width, &height,
&widthAspect, &heightAspect); &widthAspect, &heightAspect);
VideoFormatChange(width, fSourceHeight, VideoFormatChange(width, height, widthAspect, heightAspect);
widthAspect, heightAspect);
} }
break; break;