Pebble: always hide move to top feature in AppManager, it was not working as expected

A proper solution is in appmanager-fragments branch
master
Andreas Shimokawa 2016-06-19 11:48:29 +02:00
parent 988f5ef1b2
commit 64182941d0
1 changed files with 3 additions and 3 deletions

View File

@ -194,9 +194,9 @@ public class AppManagerActivity extends GBActivity {
if (!selectedApp.isConfigurable()) {
menu.removeItem(R.id.appmanager_app_configure);
}
if (mGBDevice != null && !mGBDevice.getFirmwareVersion().startsWith("v3")) {
menu.removeItem(R.id.appmanager_app_move_to_top);
}
// if (mGBDevice != null && !mGBDevice.getFirmwareVersion().startsWith("v3")) {
menu.removeItem(R.id.appmanager_app_move_to_top);
//}
menu.setHeaderTitle(selectedApp.getName());
}