summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSven Eden <yamakuzure@gmx.net>2013-09-11 07:31:23 +0200
committerSven Eden <yamakuzure@gmx.net>2013-09-11 07:31:23 +0200
commit11c00030ffec04f7007f3c1562fb4cc36cccf748 (patch)
treeca6af19ac8cc69d6bda8d9bc98a427d536e30541
parentUpdated the help text and man page to include information about the new F10 k... (diff)
downloadufed-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.c8
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