--- a/src/com/beem/project/beem/ui/ContactList.java Fri Jul 23 13:32:00 2010 +0200
+++ b/src/com/beem/project/beem/ui/ContactList.java Fri Jul 23 13:48:06 2010 +0200
@@ -168,9 +168,6 @@
case R.id.menu_change_status:
startActivity(new Intent(ContactList.this, ChangeStatus.class));
return true;
- case R.id.menu_disconnect:
- stopService(SERVICE_INTENT);
- finish();
case R.id.contact_list_menu_chatlist:
List<Contact> openedChats;
try {
@@ -180,8 +177,11 @@
chatList.show();
} catch (RemoteException e) {
e.printStackTrace();
- }
+ }
return true;
+ case R.id.menu_disconnect:
+ stopService(SERVICE_INTENT);
+ finish();
default:
return false;
}