diff options
author | Parménides GV <parmegv@sdf.org> | 2013-06-29 17:07:44 +0200 |
---|---|---|
committer | Sean Leonard <meanderingcode@aetherislands.net> | 2013-07-12 11:56:36 -0600 |
commit | f6efff1a7ec06d68bad27cd65e66d33e72572c37 (patch) | |
tree | 35994060c5b2a0a6109832757d04d231f69d0cf7 /src/se/leap/openvpn | |
parent | 4bb6f30a63fb45ab5256b65c40a46979e8ece6ab (diff) |
Added menu to ConfigurationWizard.
It only contains the "About LEAP" option.
If the user clicks again that option while the About fragment is up, no
new fragment is added and pressing 1 time the back button drives him/her
to the ConfigurationWizard activity.
Diffstat (limited to 'src/se/leap/openvpn')
-rw-r--r-- | src/se/leap/openvpn/AboutFragment.java | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/se/leap/openvpn/AboutFragment.java b/src/se/leap/openvpn/AboutFragment.java index 3563528b..4f9f9f2e 100644 --- a/src/se/leap/openvpn/AboutFragment.java +++ b/src/se/leap/openvpn/AboutFragment.java @@ -15,6 +15,11 @@ import se.leap.leapclient.R; public class AboutFragment extends Fragment { + public static Fragment newInstance() { + AboutFragment instance = new AboutFragment(); + return instance; + } + @Override public void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); |