Skip to content

Commit cf04d32

Browse files
committed
8.3でグループバーが正しく動作しないバグを修正.
1 parent 6f41438 commit cf04d32

File tree

4 files changed

+5
-2
lines changed

4 files changed

+5
-2
lines changed

AAKeyboardApp.xcodeproj/project.pbxproj

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1173,7 +1173,7 @@
11731173
);
11741174
runOnlyForDeploymentPostprocessing = 0;
11751175
shellPath = /bin/sh;
1176-
shellScript = "ibtool --generate-stringsfile $SRCROOT/AAKeyboardApp/ja.lproj/Main.strings --import-strings-file $SRCROOT/AAKeyboardApp/ja.lproj/Main.strings $SRCROOT/AAKeyboardApp/Base.lproj/Main.storyboard\n";
1176+
shellScript = "#ibtool --generate-stringsfile $SRCROOT/AAKeyboardApp/ja.lproj/Main.strings --import-strings-file $SRCROOT/AAKeyboardApp/ja.lproj/Main.strings $SRCROOT/AAKeyboardApp/Base.lproj/Main.storyboard\n";
11771177
};
11781178
14530C361A1BA71600B6BFFE /* ShellScript */ = {
11791179
isa = PBXShellScriptBuildPhase;
@@ -1650,6 +1650,7 @@
16501650
DISABLED_APP_GROUPS,
16511651
);
16521652
INFOPLIST_FILE = keyboard/Info.plist;
1653+
IPHONEOS_DEPLOYMENT_TARGET = 8.3;
16531654
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @executable_path/../../Frameworks";
16541655
PRODUCT_NAME = "$(TARGET_NAME)";
16551656
PROVISIONING_PROFILE = "";
@@ -1844,6 +1845,7 @@
18441845
TARGET_IS_EXTENSION,
18451846
);
18461847
INFOPLIST_FILE = keyboard/Info.plist;
1848+
IPHONEOS_DEPLOYMENT_TARGET = 8.3;
18471849
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @executable_path/../../Frameworks";
18481850
PRODUCT_NAME = "$(TARGET_NAME)";
18491851
PROVISIONING_PROFILE = "";
@@ -1859,6 +1861,7 @@
18591861
"CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
18601862
GCC_PREPROCESSOR_DEFINITIONS = TARGET_IS_EXTENSION;
18611863
INFOPLIST_FILE = keyboard/Info.plist;
1864+
IPHONEOS_DEPLOYMENT_TARGET = 8.3;
18621865
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @executable_path/../../Frameworks";
18631866
PRODUCT_NAME = "$(TARGET_NAME)";
18641867
PROVISIONING_PROFILE = "";

AAKeyboardApp/ja.lproj/Main.strings

-252 Bytes
Binary file not shown.

keyboard/AAKToolbar.m

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -171,7 +171,7 @@ - (void)layout {
171171
**/
172172
- (void)updateWithWidth:(CGFloat)width {
173173
// 幅が不当なときは計算しない.
174-
if (width < 1)
174+
if (width >= 1)
175175
return;
176176

177177
// まず,普通にすべてのグループについて幅を計算する.
-56 Bytes
Binary file not shown.

0 commit comments

Comments
 (0)