Replace unpair option with delete PC

This commit is contained in:
Cameron Gutman 2015-02-07 05:57:30 -05:00
parent e1a1a6344d
commit 4fcd8b3dfe

View File

@ -254,7 +254,10 @@ public class PcView extends Activity implements AdapterFragmentCallbacks {
} }
else { else {
menu.add(Menu.NONE, APP_LIST_ID, 1, getResources().getString(R.string.pcview_menu_app_list)); menu.add(Menu.NONE, APP_LIST_ID, 1, getResources().getString(R.string.pcview_menu_app_list));
menu.add(Menu.NONE, UNPAIR_ID, 2, getResources().getString(R.string.pcview_menu_unpair_pc));
// FIXME: We used to be able to unpair here but it's been broken since GFE 2.1.x, so I've replaced
// it with delete which actually work
menu.add(Menu.NONE, DELETE_ID, 2, getResources().getString(R.string.pcview_menu_delete_pc));
} }
} }