From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) by finch.gentoo.org (Postfix) with ESMTP id B95651381F3 for ; Wed, 11 Sep 2013 06:04:26 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 5784AE0C90; Wed, 11 Sep 2013 06:04:18 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id D1B82E0C8A for ; Wed, 11 Sep 2013 06:04:12 +0000 (UTC) Received: from hornbill.gentoo.org (hornbill.gentoo.org [94.100.119.163]) (using TLSv1 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id E482133EB81 for ; Wed, 11 Sep 2013 06:04:11 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by hornbill.gentoo.org (Postfix) with ESMTP id B9CA8E5470 for ; Wed, 11 Sep 2013 06:04:08 +0000 (UTC) From: "Sven Eden" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Sven Eden" Message-ID: <1378877483.11c00030ffec04f7007f3c1562fb4cc36cccf748.yamakuzure@gentoo> Subject: [gentoo-commits] proj/ufed:master commit in: / X-VCS-Repository: proj/ufed X-VCS-Files: ufed-curses-checklist.c X-VCS-Directories: / X-VCS-Committer: yamakuzure X-VCS-Committer-Name: Sven Eden X-VCS-Revision: 11c00030ffec04f7007f3c1562fb4cc36cccf748 X-VCS-Branch: master Date: Wed, 11 Sep 2013 06:04:08 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Archives-Salt: e553cba8-466c-4fb1-8a27-d106787b0b7c X-Archives-Hash: 7ec4281ca120ce5920fe47d357eb8fb9 commit: 11c00030ffec04f7007f3c1562fb4cc36cccf748 Author: Sven Eden gmx net> AuthorDate: Wed Sep 11 05:31:23 2013 +0000 Commit: Sven Eden gmx de> CommitDate: Wed Sep 11 05:31:23 2013 +0000 URL: http://git.overlays.gentoo.org/gitweb/?p=proj/ufed.git;a=commit;h=11c00030 Toggling description display using F9/F10 needs a full draw() --- ufed-curses-checklist.c | 8 ++------ 1 file 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