diff options
author | Arne Schwabe <arne@rfc2549.org> | 2012-07-21 00:23:13 +0200 |
---|---|---|
committer | Arne Schwabe <arne@rfc2549.org> | 2012-07-21 00:23:13 +0200 |
commit | 7ef4e9634718245fb2e9e01412119b96ef368441 (patch) | |
tree | 51bf077e670ce17de401255d92f8ea00726bd90e /src/de/blinkt/openvpn/FileSelectionFragment.java | |
parent | 10d0c34e8b4a5aa3626b5bbd0d3bcedc12cb8ddb (diff) |
Allow clearing of the CA Cert (closes issue #57)
Diffstat (limited to 'src/de/blinkt/openvpn/FileSelectionFragment.java')
-rw-r--r-- | src/de/blinkt/openvpn/FileSelectionFragment.java | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/src/de/blinkt/openvpn/FileSelectionFragment.java b/src/de/blinkt/openvpn/FileSelectionFragment.java index 1761c395..2d8110e1 100644 --- a/src/de/blinkt/openvpn/FileSelectionFragment.java +++ b/src/de/blinkt/openvpn/FileSelectionFragment.java @@ -73,15 +73,17 @@ public class FileSelectionFragment extends ListFragment { }); mClearButton = (Button) v.findViewById(R.id.fdClear); - mClearButton.setEnabled(false); mClearButton.setOnClickListener(new OnClickListener() { @Override public void onClick(View v) { - + ((FileSelect) getActivity()).clearData(); } }); - mClearButton.setVisibility(View.GONE); + if(!((FileSelect) getActivity()).showClear()) { + mClearButton.setVisibility(View.GONE); + mClearButton.setEnabled(false); + } mImportFile = (Button) v.findViewById(R.id.importfile); @@ -108,7 +110,7 @@ public class FileSelectionFragment extends ListFragment { super.onActivityCreated(savedInstanceState); mStartPath = ((FileSelect) getActivity()).getSelectPath(); - getDir(mStartPath); + getDir(mStartPath); } @Override |