1
0
mirror of https://github.com/moparisthebest/k-9 synced 2024-11-23 18:02:15 -05:00

. Replaced 'Delete' button in message view with 'Forward' one (too many accidental deletes)

This commit is contained in:
Bao-Long Nguyen-Trong 2008-12-21 15:52:21 +00:00
parent 5d576f899f
commit 7f81a1ed5d
2 changed files with 5 additions and 5 deletions

View File

@ -61,8 +61,8 @@
android:layout_width="0dip"
android:layout_weight="1" />
<Button
android:id="@+id/delete"
android:text="@string/delete_action"
android:id="@+id/forward"
android:text="@string/forward_action"
android:layout_height="wrap_content"
android:layout_width="0dip"
android:layout_weight="1" />

View File

@ -303,7 +303,7 @@ public class MessageView extends Activity
findViewById(R.id.reply).setOnClickListener(this);
findViewById(R.id.reply_all).setOnClickListener(this);
findViewById(R.id.delete).setOnClickListener(this);
findViewById(R.id.forward).setOnClickListener(this);
findViewById(R.id.show_pictures).setOnClickListener(this);
// UrlInterceptRegistry.registerHandler(this);
@ -521,8 +521,8 @@ public class MessageView extends Activity
case R.id.reply_all:
onReplyAll();
break;
case R.id.delete:
onDelete();
case R.id.forward:
onForward();
break;
case R.id.next:
onNext();