Mercurial > 510Connectbot
changeset 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 |
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:00:25 2014 -0700 +++ b/src/com/five_ten_sg/connectbot/HostListActivity.java Wed Jul 02 21:03:44 2014 -0700 @@ -473,7 +473,8 @@ break; case 'f': - float fx = prefs.getFloat(key, 1.0f); + String fsx = prefs.getString(key, ""); + //float fx = prefs.getFloat(key, 1.0f); float fv = values.getAsFloat(key); editor.putFloat(key, fv); break;