1
0
mirror of https://github.com/gnosygnu/xowa.git synced 2025-05-30 14:04:56 +00:00

Gui: Force escape in url bar to restore url

This commit is contained in:
gnosygnu 2017-02-15 05:02:08 -05:00
parent faebc72c4f
commit b37b5ceddd

View File

@ -268,8 +268,10 @@ class Swt_combo_text__key_down implements Listener { // for list-box, highligh
}
break;
case SWT.ESC:
list.Sel_idx_by_key(-1);
list.Visible_(false);
if (list.Visible()) { // NOTE: must check if list is visible, else will need to press escape twice to restore url; DATE:2017-02-15
list.Sel_idx_by_key(-1);
list.Visible_(false);
}
break;
}
} catch (Exception e) {