Mercurial > dillo_port1.3
changeset 165:c990d3b91b77
- Fixed a bug in the findtext dialog.
author | jcid |
---|---|
date | Sun, 06 Apr 2008 22:16:46 +0200 |
parents | 95be5cd3c392 |
children | 9acc32678aea |
files | src/dialog.cc |
diffstat | 1 files changed, 13 insertions(+), 8 deletions(-) [+] |
line wrap: on
line diff
--- a/src/dialog.cc Sun Apr 06 19:09:42 2008 +0200 +++ b/src/dialog.cc Sun Apr 06 22:16:46 2008 +0200 @@ -159,17 +159,22 @@ const char *key = tf->i->value(); bool case_sens = tf->cb->value(); + if (key[0] != '\0') + a_UIcmd_findtext_search(tf->bw, key, case_sens); + +} + +/* + * Find next occurrence of input key + */ +static void findtext_search_cb2(Widget *widget, void *vtf) +{ /* * Somehow fltk even regards the first loss of focus for the * window as a WHEN_ENTER_KEY_ALWAYS event. */ - int e = event_key(); - if ((e != ReturnKey) && (e != LeftButton)) - return; - - if (key[0] != '\0') - a_UIcmd_findtext_search(tf->bw, key, case_sens); - + if (event_key() == ReturnKey) + findtext_search_cb(widget, vtf); } /* @@ -195,7 +200,7 @@ begin(); i = new Input(0, 0, ww, ih); i->when(WHEN_ENTER_KEY_ALWAYS); - i->callback(findtext_search_cb, this); + i->callback(findtext_search_cb2, this); cb = new CheckButton(0, ih, ww, wh-ih-bh, "Case-sensitive");