forked from organicmaps/organicmaps
[downloader][ios] Closed #406 - Done on the right, about on the left
This commit is contained in:
parent
c05a5f3a9b
commit
3f8bc6e7c5
2 changed files with 7 additions and 8 deletions
|
@ -81,17 +81,16 @@ static bool IsOurIndex(TIndex const & theirs, TIndex const & ours)
|
|||
if ((self = [super initWithNibName:nil bundle:nil]))
|
||||
{
|
||||
self.navigationItem.title = header;
|
||||
|
||||
UIBarButtonItem * aboutButton = [[[UIBarButtonItem alloc] initWithTitle:NSLocalizedString(@"About", @"Settings/Downloader - About the program button") style: UIBarButtonItemStylePlain
|
||||
target:self action:@selector(onAboutButton:)] autorelease];
|
||||
self.navigationItem.rightBarButtonItem = aboutButton;
|
||||
// Show Close button only on the first page
|
||||
// Show About button only on the first page
|
||||
if ([header compare:NSLocalizedString(@"Download", @"Settings/Downloader - Main downloader window title")] == NSOrderedSame)
|
||||
{
|
||||
UIBarButtonItem * closeButton = [[[UIBarButtonItem alloc] initWithTitle:NSLocalizedString(@"Close", @"Settings/Downloader - Close downloader button") style: UIBarButtonItemStylePlain
|
||||
target:self action:@selector(onCloseButton:)] autorelease];
|
||||
self.navigationItem.leftBarButtonItem = closeButton;
|
||||
UIBarButtonItem * aboutButton = [[[UIBarButtonItem alloc] initWithTitle:NSLocalizedString(@"About", @"Settings/Downloader - About the program button") style: UIBarButtonItemStylePlain
|
||||
target:self action:@selector(onAboutButton:)] autorelease];
|
||||
self.navigationItem.leftBarButtonItem = aboutButton;
|
||||
}
|
||||
UIBarButtonItem * closeButton = [[[UIBarButtonItem alloc] initWithTitle:NSLocalizedString(@"Done", @"Settings/Downloader - Close downloader button") style: UIBarButtonItemStyleDone
|
||||
target:self action:@selector(onCloseButton:)] autorelease];
|
||||
self.navigationItem.rightBarButtonItem = closeButton;
|
||||
}
|
||||
return self;
|
||||
}
|
||||
|
|
Binary file not shown.
Loading…
Add table
Reference in a new issue