# HG changeset patch # User Carl Byington # Date 1403196161 25200 # Node ID 50e1dead04a124a7e2a72c8b2ae9340b022e4d9a # Parent 377357365d68dfad15a4bf58b9d16606a92a1213 host editor database values override summary text only if non-empty diff -r 377357365d68 -r 50e1dead04a1 src/com/five_ten_sg/connectbot/HostEditorActivity.java --- a/src/com/five_ten_sg/connectbot/HostEditorActivity.java Thu Jun 19 09:42:09 2014 -0700 +++ b/src/com/five_ten_sg/connectbot/HostEditorActivity.java Thu Jun 19 09:42:41 2014 -0700 @@ -361,7 +361,7 @@ if (entryIndex >= 0) value = listPref.getEntries()[entryIndex]; } - if ((value == null) || value.length() == 0)) value = summaries.get(key); + if ((value == null) || (value.length() == 0)) value = summaries.get(key); pref.setSummary(value); } }