Skip to content

Commit

Permalink
Pad task bottom when 'Show task age' isn't selected
Browse files Browse the repository at this point in the history
  • Loading branch information
ginatrapani committed Feb 21, 2011
1 parent 08f4a0b commit 337c478
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions src/com/todotxt/todotxttouch/TodoTxtTouch.java
Expand Up @@ -878,6 +878,11 @@ public View getView(int position, View convertView, ViewGroup parent) {
holder.tasktext.getPaddingTop(),
holder.tasktext.getPaddingRight(), 4);
}
} else {
holder.tasktext.setPadding(
holder.tasktext.getPaddingLeft(),
holder.tasktext.getPaddingTop(),
holder.tasktext.getPaddingRight(), 4);
}
}
return convertView;
Expand Down

0 comments on commit 337c478

Please sign in to comment.