Add a bit of padding, got rid of logging statement

pull/14/head
Tim Su 14 years ago
parent 13a4d51ca2
commit 1cb46c83fc

@ -62,6 +62,7 @@
<TextView android:id="@+id/extendedDetails"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:paddingLeft="4dip"
android:visibility="gone" />
<LinearLayout android:id="@+id/actions"
@ -70,6 +71,7 @@
android:background="#4499bbcc"
android:visibility="gone"
android:paddingTop="4dip"
android:paddingLeft="4dip"
android:orientation="horizontal" />
</LinearLayout>

@ -396,8 +396,6 @@ public class TaskAdapter extends CursorAdapter implements Filterable {
if(task.isCompleted())
continue;
if(!task.containsNonNullValue(Task.DETAILS)) {
System.err.println("READING details for " + task.getId());
Intent broadcastIntent = new Intent(AstridApiConstants.BROADCAST_REQUEST_DETAILS);
broadcastIntent.putExtra(AstridApiConstants.EXTRAS_TASK_ID, task.getId());
broadcastIntent.putExtra(AstridApiConstants.EXTRAS_EXTENDED, false);

Loading…
Cancel
Save