comparison src/com/five_ten_sg/connectbot/HostListActivity.java @ 200:6cc9a9e622bc

read deployment.connections on startup for global preferences also
author Carl Byington <carl@five-ten-sg.com>
date Wed, 02 Jul 2014 21:03:44 -0700
parents 33928f24b40d
children 621732df242e
comparison
equal deleted inserted replaced
199:33928f24b40d 200:6cc9a9e622bc
471 int iv = values.getAsInteger(key); 471 int iv = values.getAsInteger(key);
472 editor.putInt(key, iv); 472 editor.putInt(key, iv);
473 break; 473 break;
474 474
475 case 'f': 475 case 'f':
476 float fx = prefs.getFloat(key, 1.0f); 476 String fsx = prefs.getString(key, "");
477 //float fx = prefs.getFloat(key, 1.0f);
477 float fv = values.getAsFloat(key); 478 float fv = values.getAsFloat(key);
478 editor.putFloat(key, fv); 479 editor.putFloat(key, fv);
479 break; 480 break;
480 481
481 case 's': 482 case 's':