Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
10
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Open sidebar
VideoLAN
VLC-iOS
Commits
3345b2e4
Commit
3345b2e4
authored
Nov 01, 2013
by
Felix Paul Kühne
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Deploy patch by Pierre SAGASPE against InAppSettingsKit
parent
c1bedc19
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
35 additions
and
0 deletions
+35
-0
buildAspenProject.sh
buildAspenProject.sh
+8
-0
patches/inappsettingskit/0001-Fix-IASKAppSettingsViewController.m-deprecated-IOS-6.patch
...ix-IASKAppSettingsViewController.m-deprecated-IOS-6.patch
+27
-0
No files found.
buildAspenProject.sh
View file @
3345b2e4
...
...
@@ -186,6 +186,14 @@ rm -rf __MACOSX
fi
if
!
[
-e
InAppSettingsKit
]
;
then
git clone git://github.com/futuretap/InAppSettingsKit.git
cd
InAppSettingsKit
git am ../../patches/inappsettingskit/
*
.patch
if
[
$?
-ne
0
]
;
then
git am
--abort
info
"Applying the patches failed, aborting git-am"
exit
1
fi
cd
..
fi
info
"Setup 'External' folders"
...
...
patches/inappsettingskit/0001-Fix-IASKAppSettingsViewController.m-deprecated-IOS-6.patch
0 → 100644
View file @
3345b2e4
From 421ec2a6f0aad9254b76150884d725635276e912 Mon Sep 17 00:00:00 2001
From: "Pierre SAGASPE pierre.sagaspe@me.com" <pierre.sagaspe@me.com>
Date: Fri, 1 Nov 2013 12:45:34 +0100
Subject: [PATCH] Fix IASKAppSettingsViewController.m deprecated IOS 6
---
InAppSettingsKit/Controllers/IASKAppSettingsViewController.m | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/InAppSettingsKit/Controllers/IASKAppSettingsViewController.m b/InAppSettingsKit/Controllers/IASKAppSettingsViewController.m
index 1a5a9bf..425fe93 100644
--- a/InAppSettingsKit/Controllers/IASKAppSettingsViewController.m
+++ b/InAppSettingsKit/Controllers/IASKAppSettingsViewController.m
@@ -462,8 +462,8 @@
CGRect IASKCGRectSwap(CGRect rect);
} else {
cell = [[UITableViewCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:identifier];
}
- cell.textLabel.minimumFontSize = kIASKMinimumFontSize;
- cell.detailTextLabel.minimumFontSize = kIASKMinimumFontSize;
+ cell.textLabel.minimumScaleFactor = kIASKMinimumFontSize;
+ cell.detailTextLabel.minimumScaleFactor = kIASKMinimumFontSize;
return cell;
}
--
1.8.3.4 (Apple Git-47)
Write
Preview
Markdown
is supported
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