Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Menu
Open sidebar
VideoLAN
VLC-iOS
Commits
9d2f31f2
Commit
9d2f31f2
authored
May 24, 2013
by
Felix Paul Kühne
Browse files
fix done button style in about panel
parent
6e855451
Changes
1
Show whitespace changes
Inline
Side-by-side
AspenProject/VLCAboutViewController.m
View file @
9d2f31f2
...
...
@@ -26,6 +26,7 @@
[
super
viewDidLoad
];
self
.
dismissButton
.
title
=
NSLocalizedString
(
@"BUTTON_DONE"
,
@""
);
self
.
dismissButton
.
style
=
UIBarButtonItemStyleDone
;
self
.
textContents
.
text
=
[
NSString
stringWithContentsOfFile
:[[
NSBundle
mainBundle
]
pathForResource
:
@"About Contents"
ofType
:
@"txt"
]
encoding
:
NSUTF8StringEncoding
error
:
nil
];
self
.
aspenVersion
.
text
=
[[
NSString
stringWithFormat
:
NSLocalizedString
(
@"VERSION_FORMAT"
,
@""
),
[[
NSBundle
mainBundle
]
objectForInfoDictionaryKey
:
@"CFBundleVersion"
]]
stringByAppendingFormat
:
@" %@"
,
kVLCVersionCodename
];
self
.
vlckitVersion
.
text
=
[
NSString
stringWithFormat
:
NSLocalizedString
(
@"BASED_ON_FORMAT"
,
@""
),[[
VLCLibrary
sharedLibrary
]
version
]];
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment