summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authordynaflash <[email protected]>2007-08-01 00:57:11 +0000
committerdynaflash <[email protected]>2007-08-01 00:57:11 +0000
commit89b34e5983fd9932b6bc8091c43a6fc37c8cbf34 (patch)
tree854118c182505b787a623b5d822cb0c759b59bfa
parentefa061f09e81f96506b00f44eafae2ccaa5a8ea7 (diff)
MacGui: Deinterlace - fix bug where setting the deinterlace to none didnt show the interlacing in the picture preview.
git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@776 b64f7644-9d1e-0410-96f1-a4d463321fa5
-rw-r--r--macosx/PictureController.mm2
1 files changed, 1 insertions, 1 deletions
diff --git a/macosx/PictureController.mm b/macosx/PictureController.mm
index 7a2a03161..afdb6f6cc 100644
--- a/macosx/PictureController.mm
+++ b/macosx/PictureController.mm
@@ -236,7 +236,7 @@ static int GetAlignedSize( int size )
/* new multilevel deinterlacing popup */
[fDeinterlaceLevelMainWindow setStringValue: [NSString stringWithFormat: @"%d",[fDeinterlacePopUp indexOfSelectedItem]]];
- if ([fDeinterlaceLevelMainWindow stringValue] == 0)
+ if ([fDeinterlacePopUp indexOfSelectedItem] == 0)
{
job->deinterlace = 0;
}