From: David Lawrence Ramsey Date: Wed, 29 Jun 2005 19:01:11 +0000 (+0000) Subject: in do_yesno(), het input from bottomwin instead of edit, so that the X-Git-Tag: v1.3.8~6 X-Git-Url: https://git.wh0rd.org/?a=commitdiff_plain;h=44e0c03fffe55fee6820e0f6f339721b13d657a1;p=nano.git in do_yesno(), het input from bottomwin instead of edit, so that the cursor isn't erroneously put in the edit window while we wait for an answer git-svn-id: svn://svn.savannah.gnu.org/nano/trunk/nano@2797 35c25a1d-7b9e-4130-9fde-d3aeb78583b8 --- diff --git a/ChangeLog b/ChangeLog index f01d0b81..879c0ba4 100644 --- a/ChangeLog +++ b/ChangeLog @@ -376,6 +376,9 @@ CVS code - - Allow refreshing the screen via Ctrl-L, as Pico does. (DLR) - Add a missing assert, and use actual_x() to calculate the number of characters buf takes up, in case it's UTF-8. (DLR) + - Get input from bottomwin instead of edit, so that the cursor + isn't erroneously put in the edit window while we wait for an + answer. (DLR) total_redraw() - Simplify to call clearok(TRUE) and wrefresh() on curscr, which updates the entire screen in fewer function calls without diff --git a/src/winio.c b/src/winio.c index a504589a..e079eef3 100644 --- a/src/winio.c +++ b/src/winio.c @@ -3695,7 +3695,7 @@ int do_yesno(bool all, const char *msg) int mouse_x, mouse_y; #endif - kbinput = get_kbinput(edit, &meta_key, &func_key); + kbinput = get_kbinput(bottomwin, &meta_key, &func_key); if (kbinput == NANO_REFRESH_KEY) { total_redraw();