Fixed a weird subtasks row resizing bug when using small fonts

pull/14/head
Sam Bosley 12 years ago
parent 0a0d8d2047
commit b022f0fb38

@ -269,7 +269,11 @@ public class TaskAdapter extends CursorAdapter implements Filterable {
public int computeFullRowHeight() {
DisplayMetrics metrics = resources.getDisplayMetrics();
return minRowHeight + (int) (10 * metrics.density);
if (fontSize < 16) {
return (int) (39 * metrics.density);
} else {
return minRowHeight + (int) (10 * metrics.density);
}
}
private void startDetailThread() {

Loading…
Cancel
Save