Skip to content

Commit

Permalink
Merge pull request escoz#652 from StDogbert/QEntryTableViewCellAccess…
Browse files Browse the repository at this point in the history
…oryViewBugFix

accessory view bug fixed.
  • Loading branch information
escoz committed Mar 10, 2014
2 parents 28d1ff3 + 72446c1 commit 3aed959
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion quickdialog/QEntryTableViewCell.m
Original file line number Diff line number Diff line change
Expand Up @@ -150,7 +150,7 @@ - (void)prepareForElement:(QEntryElement *)element inTableView:(QuickDialogTable

if (_entryElement.hiddenToolbar){
_textField.inputAccessoryView = nil;
} else if (_textField==nil){
} else if (_textField!=nil){
UIToolbar *toolbar = [self createActionBar];
toolbar.barStyle = element.appearance.toolbarStyle;
toolbar.translucent = element.appearance.toolbarTranslucent;
Expand Down

0 comments on commit 3aed959

Please sign in to comment.