diff options
author | ritsuka <[email protected]> | 2008-01-30 17:07:03 +0000 |
---|---|---|
committer | ritsuka <[email protected]> | 2008-01-30 17:07:03 +0000 |
commit | d0723377bd1788fdead78aa30fbd2c246a92b8ad (patch) | |
tree | a485463027225133aea93cbc2cd1cb4290f168c4 /macosx/InstantHandBrake/ExpressController.m | |
parent | da963a205a1fb6965ae156d39d6ab18707ce609d (diff) |
Added more files to the ignore list.
git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@1242 b64f7644-9d1e-0410-96f1-a4d463321fa5
Diffstat (limited to 'macosx/InstantHandBrake/ExpressController.m')
-rw-r--r-- | macosx/InstantHandBrake/ExpressController.m | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/macosx/InstantHandBrake/ExpressController.m b/macosx/InstantHandBrake/ExpressController.m index 6775851bd..37ab8b0ec 100644 --- a/macosx/InstantHandBrake/ExpressController.m +++ b/macosx/InstantHandBrake/ExpressController.m @@ -103,6 +103,8 @@ [[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(workDone:) name:@"HBCoreWorkDoneNotification" object:nil]; + + [GrowlApplicationBridge setGrowlDelegate: self]; } - (void) applicationWillTerminate: (NSNotification *) n @@ -218,6 +220,10 @@ title->seconds]; } } + else if( [[col identifier] isEqualToString: @"Size"] ) + { + return [NSString stringWithFormat:@"-"]; + } } return nil; } @@ -363,7 +369,7 @@ job->vbitrate /= 2; } - if ( [fConvertAspectPopUp indexOfSelectedItem] ) + if ( [fConvertAspectPopUp indexOfSelectedItem] > 0 ) { do { @@ -373,6 +379,8 @@ } else { + /* Reset job->crop values */ + memcpy( job->crop, job->title->crop, 4 * sizeof( int ) ); job->width = maxwidth; hb_fix_aspect( job, HB_KEEP_WIDTH ); } |