Skip to content

Commit

Permalink
Version 1.0.8 fix render emails
Browse files Browse the repository at this point in the history
  • Loading branch information
ppaulojr committed Jul 14, 2016
1 parent 42f7d1b commit 4c36399
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions PPJEmailPicker.podspec
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ Pod::Spec.new do |s|
#

s.name = "PPJEmailPicker"
s.version = "1.0.7"
s.version = "1.0.8"
s.summary = "An UITextField replacement to select multiple e-mails"

# This description is used to generate tags and improve search results.
Expand Down Expand Up @@ -70,7 +70,7 @@ The goal is to create a control similar to GMail, Outlook or Mail.app `from` fie
# Supports git, hg, bzr, svn and HTTP.
#

s.source = { :git => "https://github.com/ppaulojr/PPJEmailPicker.git", :tag => "1.0.7" }
s.source = { :git => "https://github.com/ppaulojr/PPJEmailPicker.git", :tag => "1.0.8" }


# ――― Source Code ―――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――― #
Expand Down
2 changes: 1 addition & 1 deletion PPJEmailPicker/PPJEmailPicker.m
Original file line number Diff line number Diff line change
Expand Up @@ -278,7 +278,7 @@ -(void) renderList
lbl.labelSelectedTextColor = self.pickerSelectedTextColor;
lbl.labelSelectedBackgroundColor = self.pickerSelectedBackgroundColor;
[lbl setTitle:s forState:UIControlStateNormal];
[lbl setTitleColor:self.pickerSelectedTextColor forState:UIControlStateNormal];
[lbl setTitleColor:self.pickerTextColor forState:UIControlStateNormal];
lbl.titleLabel.font = self.autoCompleteTextFont;
[lbl sizeToFit];
[self.selectedEmailUI addObject:lbl];
Expand Down

0 comments on commit 4c36399

Please sign in to comment.