Skip to content

Commit

Permalink
fix check change bug
Browse files Browse the repository at this point in the history
Change-Id: I139dbfb1b0a5667abe3e17446e240549410f4bbb
  • Loading branch information
koush committed Dec 26, 2010
1 parent f6393c5 commit 0ac91a3
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/com/cyanogenmod/gapps/DownloadActivity.java
Expand Up @@ -110,7 +110,8 @@ public void onCreate(Bundle savedInstanceState)
public void onClick(View view){
for (int i = 0; i < mAdapter.getCount(); i++) {
Package pkg = mAdapter.getItem(i);
startActivity(getMarketIntent(pkg.Namespace));
if (pkg.Install)
startActivity(getMarketIntent(pkg.Namespace));
}
finish();
}
Expand Down

0 comments on commit 0ac91a3

Please sign in to comment.