diff options
author | Arne Schwabe <arne@rfc2549.org> | 2012-05-08 19:13:04 +0200 |
---|---|---|
committer | Arne Schwabe <arne@rfc2549.org> | 2012-05-08 19:13:04 +0200 |
commit | 6dc0a6c39024a9a6931b85f72d099072e1473595 (patch) | |
tree | adf97d4b1da7aaa68eeaa72c0e06ece3b1a28aaf | |
parent | 6d1e28f4e8a2b3c397936eb964e39463ca8b1ec7 (diff) |
If we make a toast, also show it.
-rw-r--r-- | src/de/blinkt/openvpn/LaunchVPN.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/de/blinkt/openvpn/LaunchVPN.java b/src/de/blinkt/openvpn/LaunchVPN.java index 28abaf3d..88c14da3 100644 --- a/src/de/blinkt/openvpn/LaunchVPN.java +++ b/src/de/blinkt/openvpn/LaunchVPN.java @@ -291,7 +291,7 @@ public class LaunchVPN extends ListActivity implements OnItemClickListener { try { startActivityForResult(intent, START_VPN_PROFILE); } catch (ActivityNotFoundException ane){ - Toast.makeText(this, "Your image does not support the VPNService API,sorry :(", Toast.LENGTH_LONG); + Toast.makeText(this, "Your image does not support the VPNService API,sorry :(", Toast.LENGTH_LONG).show(); } } else { onActivityResult(START_VPN_PROFILE, Activity.RESULT_OK, null); |