diff options
author | Grant Paul <chpwn@chpwn.com> | 2011-02-12 14:45:28 -0800 |
---|---|---|
committer | Grant Paul <chpwn@chpwn.com> | 2011-02-12 14:45:28 -0800 |
commit | 2761d5744c0b6e5a8a3d4941f8122a1e8ed95be6 (patch) | |
tree | 5fa6540dd44f938e344003f93c664b91fd2cf697 /MobileCydia.mm | |
parent | bbfd2981c8305115ee49c0c293dca4c5bb98edbc (diff) |
To match the built in Apple apps, the Confirm button should be blue (like Send in MobileMail, etc).
Diffstat (limited to 'MobileCydia.mm')
-rw-r--r-- | MobileCydia.mm | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/MobileCydia.mm b/MobileCydia.mm index be7f8c2..cc0d978 100644 --- a/MobileCydia.mm +++ b/MobileCydia.mm @@ -4315,7 +4315,6 @@ bool DepSubstrate(const pkgCache::VerIterator &iterator) { [[self navigationItem] setLeftBarButtonItem:[[[UIBarButtonItem alloc] initWithTitle:UCLocalize("CANCEL") - // OLD: [NSString stringWithFormat:UCLocalize("SLASH_DELIMITED"), UCLocalize("CANCEL"), UCLocalize("QUEUE")] style:UIBarButtonItemStylePlain target:self action:@selector(cancelButtonClicked) @@ -4328,7 +4327,7 @@ bool DepSubstrate(const pkgCache::VerIterator &iterator) { if (issues_ == nil && ![self isLoading]) [[self navigationItem] setRightBarButtonItem:[[[UIBarButtonItem alloc] initWithTitle:UCLocalize("CONFIRM") - style:UIBarButtonItemStylePlain + style:UIBarButtonItemStyleDone target:self action:@selector(confirmButtonClicked) ] autorelease]]; |