diff options
| author | Bananeweizen <bananeweizen@gmx.de> | 2014-05-18 15:08:31 +0200 |
|---|---|---|
| committer | Bananeweizen <bananeweizen@gmx.de> | 2014-05-18 15:08:31 +0200 |
| commit | 59b2706eed22dd8db86e38c3563a45b4cf9ea7de (patch) | |
| tree | 89ee5103a3d66d618ad191e95204dd20eb3b435d | |
| parent | 7cdb28f0afc78b80e69cc59cffc440e24b15f8e2 (diff) | |
| download | cgeo-59b2706eed22dd8db86e38c3563a45b4cf9ea7de.zip cgeo-59b2706eed22dd8db86e38c3563a45b4cf9ea7de.tar.gz cgeo-59b2706eed22dd8db86e38c3563a45b4cf9ea7de.tar.bz2 | |
show about when clicking home in main activity
| -rw-r--r-- | main/src/cgeo/geocaching/MainActivity.java | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/main/src/cgeo/geocaching/MainActivity.java b/main/src/cgeo/geocaching/MainActivity.java index 59a0614..473d870 100644 --- a/main/src/cgeo/geocaching/MainActivity.java +++ b/main/src/cgeo/geocaching/MainActivity.java @@ -291,7 +291,8 @@ public class MainActivity extends AbstractActionBarActivity { final int id = item.getItemId(); switch (id) { case android.R.id.home: - // do nothing in case of home button click + // this activity must handle the home navigation different than all others + showAbout(null); return true; case R.id.menu_about: showAbout(null); |
