diff options
author | dynaflash <[email protected]> | 2013-01-27 23:03:17 +0000 |
---|---|---|
committer | dynaflash <[email protected]> | 2013-01-27 23:03:17 +0000 |
commit | 522dafe1c3fb943c0ac08d78bf271eae7a43195f (patch) | |
tree | f43e2fc1fb04cc250bb0dacf98a385f7c415b35d /macosx/Controller.m | |
parent | 75c283023e5062be852c6a76e7d36824620e44fe (diff) |
MacGui: Add missing tooltips . Align and fix issues.
- Patch by sanmarcos … Thanks!
- Detail addressed here https://reviews.handbrake.fr/reviewboard.fcgi/r/423/
git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@5214 b64f7644-9d1e-0410-96f1-a4d463321fa5
Diffstat (limited to 'macosx/Controller.m')
-rw-r--r-- | macosx/Controller.m | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/macosx/Controller.m b/macosx/Controller.m index 567f00aad..8c2eba628 100644 --- a/macosx/Controller.m +++ b/macosx/Controller.m @@ -846,6 +846,8 @@ static NSString * ChooseSourceIdentifier = @"Choose Source It [fScanIndicator setIndeterminate: NO]; [fScanIndicator setDoubleValue: 0.0]; [fScanIndicator setHidden: YES]; + [fScanHorizontalLine setHidden: NO]; + [self showNewScan:nil]; } @@ -863,6 +865,7 @@ static NSString * ChooseSourceIdentifier = @"Choose Source It NSLocalizedString( @"Scanning title %d of %d…", @"" ), p.title_cur, p.title_count]]; [fScanIndicator setHidden: NO]; + [fScanHorizontalLine setHidden: YES]; [fScanIndicator setDoubleValue: 100.0 * ((double)( p.title_cur - 1 ) / p.title_count)]; break; } @@ -874,6 +877,7 @@ static NSString * ChooseSourceIdentifier = @"Choose Source It [fScanIndicator setIndeterminate: NO]; [fScanIndicator setDoubleValue: 0.0]; [fScanIndicator setHidden: YES]; + [fScanHorizontalLine setHidden: NO]; [self writeToActivityLog:"ScanDone state received from fHandle"]; [self showNewScan:nil]; [[fWindow toolbar] validateVisibleItems]; @@ -1868,6 +1872,7 @@ static NSString * ChooseSourceIdentifier = @"Choose Source It /* We setup the scan status in the main window to indicate a source title scan */ [fSrcDVD2Field setStringValue: @"Opening a new source title…"]; [fScanIndicator setHidden: NO]; + [fScanHorizontalLine setHidden: YES]; [fScanIndicator setIndeterminate: YES]; [fScanIndicator startAnimation: nil]; |