diff options
author | dynaflash <[email protected]> | 2009-01-21 03:46:14 +0000 |
---|---|---|
committer | dynaflash <[email protected]> | 2009-01-21 03:46:14 +0000 |
commit | e22c0e8c13d799104e616de5c469cb11b4defca0 (patch) | |
tree | 445364840421e5f40d84ec04e29246c8194ba9ce /macosx/PictureController.mm | |
parent | cb23938da2747334ee19e359a64db9bb9eec4a55 (diff) |
MacGui: Preview Window scale to screen initial implementation
- Allows scaling the preview to fit the screen when in full screen mode.
- Also hopefully fixes a bug where multiple cycles of windowed and full screen cause the hud overlay to not appear.
- hud overlay delay timer changed from 20 to 10 seconds
git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@2091 b64f7644-9d1e-0410-96f1-a4d463321fa5
Diffstat (limited to 'macosx/PictureController.mm')
-rw-r--r-- | macosx/PictureController.mm | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/macosx/PictureController.mm b/macosx/PictureController.mm index 8752c24f5..9cf401098 100644 --- a/macosx/PictureController.mm +++ b/macosx/PictureController.mm @@ -56,7 +56,7 @@ { int32_t shieldLevel = CGShieldingWindowLevel(); - [fPictureWindow setLevel:shieldLevel]; + [fPictureWindow setLevel:shieldLevel + 1]; // Show the window. [fPictureWindow makeKeyAndOrderFront:self]; } @@ -182,8 +182,6 @@ MaxOutputWidth = title->width - job->crop[2] - job->crop[3]; MaxOutputHeight = title->height - job->crop[0] - job->crop[1]; - //[fPreviewController SetTitle:fTitle]; - [self SettingsChanged: nil]; } |