Skip to content

Commit

Permalink
Merge pull request #3 from nasduck/develop
Browse files Browse the repository at this point in the history
Develop
  • Loading branch information
redrain39 authored Jan 23, 2019
2 parents 2400b0a + 8e9e30d commit f9d85e0
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ public class ToastConfig implements Parcelable {
private Integer cornerRadius; // 3
private Integer delay; // 1500
private Integer paddingHorizontal; // 32
private Integer paddingVertical; // 6
private Integer paddingVertical; // 20

public static ToastConfig getInstance() {
return new ToastConfig();
Expand Down Expand Up @@ -116,7 +116,7 @@ public Integer getPaddingHorizontal() {

public Integer getPaddingVertical() {
if (paddingVertical == null) {
paddingVertical = 6;
paddingVertical = 20;
}
return paddingVertical;
}
Expand Down

0 comments on commit f9d85e0

Please sign in to comment.