Skip to content
This repository has been archived by the owner on Nov 17, 2023. It is now read-only.

Commit

Permalink
Remove "Buy Bitcoin" from Menu (#224)
Browse files Browse the repository at this point in the history
  • Loading branch information
michaelWuensch authored Jul 27, 2020
1 parent fac1bd6 commit 9a0d40d
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 0 deletions.
2 changes: 2 additions & 0 deletions app/src/main/java/zapsolutions/zap/HomeActivity.java
Original file line number Diff line number Diff line change
Expand Up @@ -661,9 +661,11 @@ public boolean onNavigationItemSelected(@NonNull MenuItem item) {
Intent intentSettings = new Intent(this, SettingsActivity.class);
startActivity(intentSettings);
break;
/*
case R.id.drawerBuy:
Toast.makeText(this, R.string.coming_soon, Toast.LENGTH_SHORT).show();
break;
*/
case R.id.drawerSupport:
Intent intentSupport = new Intent(this, SupportActivity.class);
startActivity(intentSupport);
Expand Down
2 changes: 2 additions & 0 deletions app/src/main/res/menu/drawer_menu.xml
Original file line number Diff line number Diff line change
Expand Up @@ -22,12 +22,14 @@
android:title="@string/settings" />
</group>

<!--
<group android:id="@+id/drawerGroup3">
<item
android:id="@+id/drawerBuy"
android:icon="@drawable/ic_shopping_cart_24"
android:title="@string/drawer_menu_buy" />
</group>
-->

<item
android:id="@+id/drawerSupport"
Expand Down

0 comments on commit 9a0d40d

Please sign in to comment.