changeset 201:621732df242e

read deployment.connections on startup for global preferences also
author Carl Byington <carl@five-ten-sg.com>
date Wed, 02 Jul 2014 21:06:28 -0700
parents 6cc9a9e622bc
children b16288cbad37
files src/com/five_ten_sg/connectbot/HostListActivity.java
diffstat 1 files changed, 2 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/src/com/five_ten_sg/connectbot/HostListActivity.java	Wed Jul 02 21:03:44 2014 -0700
+++ b/src/com/five_ten_sg/connectbot/HostListActivity.java	Wed Jul 02 21:06:28 2014 -0700
@@ -458,7 +458,8 @@
                     types.put("debug_keycodes", "boolean");
                     for (String key : values.keySet()) {
                         if (types.containsKey(key)) {
-                            char stype = types.get(key).charAt(0);
+                            //char stype = types.get(key).charAt(0);
+                            char stype = 's';
                             switch (stype) {
                                 case 'b':
                                     boolean bx = prefs.getBoolean(key, true);