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 | 4335ce3f60df74c130161935c88410c244f1bb71 (patch) | |
tree | cf48dc31de047607e3f30bcc93df9451de50899b /src/de/blinkt/openvpn/LaunchVPN.java | |
parent | bc279dfd2cffaf8278ee0750aa2c05af9e4091e0 (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(); |