Skip to content

Commit

Permalink
added some LauncherActions to the blacklist, cause no need for them
Browse files Browse the repository at this point in the history
  • Loading branch information
boombuler authored and AnderWeb committed Oct 17, 2010
1 parent 4e2d41e commit 8c92707
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/com/android/launcher/LauncherActions.java
Expand Up @@ -49,7 +49,8 @@ private List<Action> getList() {
for (int i = 0; i < menuBindingsValues.length; i++) {
int value = Integer.parseInt(menuBindingsValues[i]);
String name = menuBindingsNames[i];
if (value != Launcher.BIND_NONE && value != Launcher.BIND_APP_LAUNCHER) {
if (value != Launcher.BIND_NONE && value != Launcher.BIND_APP_LAUNCHER &&
value != Launcher.BIND_HOME_PREVIEWS && value != Launcher.BIND_HOME_NOTIFICATIONS) {
DefaultLauncherAction lact = new DefaultLauncherAction(value, name);
result.add(lact);
}
Expand Down

0 comments on commit 8c92707

Please sign in to comment.