diff options
Diffstat (limited to 'src/de/blinkt/openvpn/LogWindow.java')
| -rw-r--r-- | src/de/blinkt/openvpn/LogWindow.java | 5 | 
1 files changed, 4 insertions, 1 deletions
| diff --git a/src/de/blinkt/openvpn/LogWindow.java b/src/de/blinkt/openvpn/LogWindow.java index 8d228cf1..790e143a 100644 --- a/src/de/blinkt/openvpn/LogWindow.java +++ b/src/de/blinkt/openvpn/LogWindow.java @@ -76,6 +76,7 @@ public class LogWindow extends ListActivity implements StateListener  {  			return str;  		} +  		private void shareLog() {  			Intent shareIntent = new Intent(Intent.ACTION_SEND);  			shareIntent.putExtra(Intent.EXTRA_TEXT, getLogStr()); @@ -215,12 +216,13 @@ public class LogWindow extends ListActivity implements StateListener  {  					OpenVpnManagementThread.stopOpenVPN();		  				}  			}); -			 +  			builder.show();  			return true;  		} else if(item.getItemId()==R.id.info) {  			if(mBconfig==null)  				OpenVPN.triggerLogBuilderConfig(); +  		} else if(item.getItemId()==R.id.send) {  			ladapter.shareLog();  		} else if(item.getItemId()==R.id.edit_vpn) { @@ -252,6 +254,7 @@ public class LogWindow extends ListActivity implements StateListener  {  		return true;  	} +  	@Override  	protected void onResume() {  		super.onResume(); | 
