1
0
mirror of https://github.com/moparisthebest/k-9 synced 2025-01-11 21:58:35 -05:00

fix the heights of the multi-act buttons to not be inconsistent

This commit is contained in:
Jesse Vincent 2010-05-11 23:58:02 +00:00
parent 2121ebc012
commit defaf7bbbf

View File

@ -19,14 +19,14 @@
<Button <Button
android:id="@+id/batch_read_button" android:id="@+id/batch_read_button"
android:layout_width="0dip" android:layout_width="0dip"
android:layout_height="wrap_content" android:layout_height="fill_parent"
android:layout_weight="1" android:layout_weight="1"
android:text="@string/message_list_mark_read_action" android:text="@string/message_list_mark_read_action"
/> />
<Button <Button
android:id="@+id/batch_delete_button" android:id="@+id/batch_delete_button"
android:layout_width="0dip" android:layout_width="0dip"
android:layout_height="wrap_content" android:layout_height="fill_parent"
android:layout_weight="1" android:layout_weight="1"
android:text="@string/message_list_delete_action" android:text="@string/message_list_delete_action"
/> />
@ -40,7 +40,7 @@
<Button <Button
android:id="@+id/batch_done_button" android:id="@+id/batch_done_button"
android:layout_width="0dip" android:layout_width="0dip"
android:layout_height="wrap_content" android:layout_height="fill_parent"
android:layout_weight="1" android:layout_weight="1"
android:text="@string/done_action" android:text="@string/done_action"
/> />