diff options
author | Sven Eden <yamakuzure@gmx.net> | 2013-09-11 07:31:23 +0200 |
---|---|---|
committer | Sven Eden <yamakuzure@gmx.net> | 2013-09-11 07:31:23 +0200 |
commit | 11c00030ffec04f7007f3c1562fb4cc36cccf748 (patch) | |
tree | ca6af19ac8cc69d6bda8d9bc98a427d536e30541 | |
parent | Updated the help text and man page to include information about the new F10 k... (diff) | |
download | ufed-11c00030ffec04f7007f3c1562fb4cc36cccf748.tar.gz ufed-11c00030ffec04f7007f3c1562fb4cc36cccf748.tar.bz2 ufed-11c00030ffec04f7007f3c1562fb4cc36cccf748.zip |
Toggling description display using F9/F10 needs a full draw()
-rw-r--r-- | ufed-curses-checklist.c | 8 |
1 files changed, 2 insertions, 6 deletions
diff --git a/ufed-curses-checklist.c b/ufed-curses-checklist.c index 39f4a8d..a512869 100644 --- a/ufed-curses-checklist.c +++ b/ufed-curses-checklist.c @@ -529,9 +529,7 @@ static int callback(sFlag** curr, int key) else e_order = eOrder_left; - drawFlags(); - drawBottom(true); - wmove(wInp, 0, strlen(fayt)); + draw(true); break; case KEY_F(10): @@ -540,9 +538,7 @@ static int callback(sFlag** curr, int key) else e_desc = eDesc_ori; - drawFlags(); - drawBottom(true); - wmove(wInp, 0, strlen(fayt)); + draw(true); break; #ifdef NCURSES_MOUSE_VERSION |