diff options
author | Arne Schwabe <arne@rfc2549.org> | 2012-06-27 22:59:55 +0200 |
---|---|---|
committer | Arne Schwabe <arne@rfc2549.org> | 2012-06-27 22:59:55 +0200 |
commit | ce20c72f201f6982cf0273aff4cab939abe08459 (patch) | |
tree | 3c1eb52a7f3aab74fa27d01b79c31ab7dba85ae9 /src/de/blinkt/openvpn/LaunchVPN.java | |
parent | 35fc78f5c1cfaf4f3a35a67b0e9f851bdbd8c40d (diff) |
Some minor fixes
Diffstat (limited to 'src/de/blinkt/openvpn/LaunchVPN.java')
-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 1c873f22..7c988b69 100644 --- a/src/de/blinkt/openvpn/LaunchVPN.java +++ b/src/de/blinkt/openvpn/LaunchVPN.java @@ -305,7 +305,7 @@ public class LaunchVPN extends ListActivity implements OnItemClickListener { askForPW(needpw); } else { SharedPreferences prefs = PreferenceManager.getDefaultSharedPreferences(this); - boolean showlogwindow = prefs.getBoolean("showlogwindow", false); + boolean showlogwindow = prefs.getBoolean("showlogwindow", true); if(showlogwindow) showLogWindow(); new startOpenVpnThread().start(); |