Bug 746958 - Do not make duplicate home screen shortcuts r=mbrubeck a=blocking-fennec

This commit is contained in:
Mark Finkle 2012-04-20 00:54:48 -04:00
Родитель e89aabbd0d
Коммит 4c5ce4a27b
1 изменённых файлов: 4 добавлений и 0 удалений

Просмотреть файл

@ -749,6 +749,10 @@ public class GeckoAppShell
else
intent.putExtra(Intent.EXTRA_SHORTCUT_NAME, aURI);
intent.putExtra(Intent.EXTRA_SHORTCUT_ICON, getLauncherIcon(aIcon));
// Do not allow duplicate items
intent.putExtra("duplicate", false);
intent.setAction("com.android.launcher.action.INSTALL_SHORTCUT");
GeckoApp.mAppContext.sendBroadcast(intent);
}