Skip to content

Commit

Permalink
Change notes to TextView. Fixes #120
Browse files Browse the repository at this point in the history
  • Loading branch information
phillipthelen committed Jul 15, 2015
1 parent 41916e8 commit bf97132
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion HabitRPG/Habitica-Info.plist
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@
</dict>
</array>
<key>CFBundleVersion</key>
<string>64</string>
<string>65</string>
<key>Fabric</key>
<dict>
<key>APIKey</key>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ -(void)initializeForm {
row.required = YES;
[section addFormRow:row];

row = [XLFormRowDescriptor formRowDescriptorWithTag:@"notes" rowType:XLFormRowDescriptorTypeText title:NSLocalizedString(@"Notes", nil)];
row = [XLFormRowDescriptor formRowDescriptorWithTag:@"notes" rowType:XLFormRowDescriptorTypeTextView title:NSLocalizedString(@"Notes", nil)];
[section addFormRow:row];

row = [XLFormRowDescriptor formRowDescriptorWithTag:@"value" rowType:XLFormRowDescriptorTypeInteger title:NSLocalizedString(@"Value", nil)];
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ -(void)initializeForm {
row.required = YES;
[section addFormRow:row];

row = [XLFormRowDescriptor formRowDescriptorWithTag:@"notes" rowType:XLFormRowDescriptorTypeText title:NSLocalizedString(@"Notes", nil)];
row = [XLFormRowDescriptor formRowDescriptorWithTag:@"notes" rowType:XLFormRowDescriptorTypeTextView title:NSLocalizedString(@"Notes", nil)];
[section addFormRow:row];

row = [XLFormRowDescriptor formRowDescriptorWithTag:@"priority" rowType:XLFormRowDescriptorTypeSelectorPush title:NSLocalizedString(@"Difficulty", nil)];
Expand Down

0 comments on commit bf97132

Please sign in to comment.