Fixed a weird subtasks row resizing bug when using small fonts

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

@ -269,8 +269,12 @@ public class TaskAdapter extends CursorAdapter implements Filterable {
public int computeFullRowHeight() {
DisplayMetrics metrics = resources.getDisplayMetrics();
if (fontSize < 16) {
return (int) (39 * metrics.density);
} else {
return minRowHeight + (int) (10 * metrics.density);
}
}
private void startDetailThread() {
if (Preferences.getBoolean(R.string.p_showNotes, false) && !simpleLayout) {

Loading…
Cancel
Save