diff options
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 ); } |