I2P Address: [http://git.idk.i2p]

Skip to content
Snippets Groups Projects
Commit 2f6b1189 authored by str4d's avatar str4d
Browse files

Hide edit action in I2PTunnel

parent a7a32823
No related branches found
No related tags found
No related merge requests found
...@@ -5,7 +5,6 @@ ...@@ -5,7 +5,6 @@
- change tab when viewing RI from LS - change tab when viewing RI from LS
- Refresh detail fragment when changing tab - Refresh detail fragment when changing tab
- I2PTunnel - I2PTunnel
- Hide edit button
- Fix bug with HTTP client tunnel wizard - Fix bug with HTTP client tunnel wizard
- Text content - Text content
- Move help content from release notes to help page - Move help content from release notes to help page
...@@ -14,6 +13,7 @@ ...@@ -14,6 +13,7 @@
- Change navbar first-open mechanics to match Android design docs - Change navbar first-open mechanics to match Android design docs
- Pull out internal I2P web browser, or disable it - Pull out internal I2P web browser, or disable it
- What will this require elsewhere? - What will this require elsewhere?
- New status image for "no internet"
# Short-term # Short-term
......
...@@ -108,6 +108,8 @@ public class TunnelDetailFragment extends Fragment { ...@@ -108,6 +108,8 @@ public class TunnelDetailFragment extends Fragment {
@Override @Override
public void onCreateOptionsMenu(Menu menu, MenuInflater inflater) { public void onCreateOptionsMenu(Menu menu, MenuInflater inflater) {
inflater.inflate(R.menu.fragment_i2ptunnel_detail_actions, menu); inflater.inflate(R.menu.fragment_i2ptunnel_detail_actions, menu);
// Hide the edit action until we have an edit UI
menu.findItem(R.id.action_edit_tunnel).setVisible(false);
} }
@Override @Override
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment