summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJoel Fischer <joeljfischer@gmail.com>2020-05-21 14:50:08 -0400
committerJoel Fischer <joeljfischer@gmail.com>2020-05-21 14:50:08 -0400
commitb4838a4a98f82b0f1e8d7c5469455c5c517262f8 (patch)
tree5ea2abfc2f177947bbd500bfb5f012cee03fad03
parent4d2936f468ffa3c5d4f89c65e9f7c61e3b2158a5 (diff)
downloadsdl_ios-b4838a4a98f82b0f1e8d7c5469455c5c517262f8.tar.gz
Fix number of rows to be max according to the spec
-rw-r--r--SmartDeviceLink/SDLTextField+ScreenManagerExtensions.m2
1 files changed, 1 insertions, 1 deletions
diff --git a/SmartDeviceLink/SDLTextField+ScreenManagerExtensions.m b/SmartDeviceLink/SDLTextField+ScreenManagerExtensions.m
index a3ec2cb49..746c5ae23 100644
--- a/SmartDeviceLink/SDLTextField+ScreenManagerExtensions.m
+++ b/SmartDeviceLink/SDLTextField+ScreenManagerExtensions.m
@@ -17,7 +17,7 @@
+ (NSArray<SDLTextField *> *)allTextFields {
NSMutableArray<SDLTextField *> *tempTextFields = [NSMutableArray array];
for (SDLTextFieldName fieldName in [self sdl_allTextFieldNames]) {
- [tempTextFields addObject:[[SDLTextField alloc] initWithName:fieldName characterSet:SDLCharacterSetCID1 width:500 rows:500]];
+ [tempTextFields addObject:[[SDLTextField alloc] initWithName:fieldName characterSet:SDLCharacterSetCID1 width:500 rows:8]];
}
return tempTextFields;