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 E70501381F3 for ; Tue, 9 Apr 2013 07:22:38 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id CABF4E0AED; Tue, 9 Apr 2013 07:22:37 +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 60190E0AED for ; Tue, 9 Apr 2013 07:22:37 +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 6BB5533DBB0 for ; Tue, 9 Apr 2013 07:22:36 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by hornbill.gentoo.org (Postfix) with ESMTP id F1D78E4073 for ; Tue, 9 Apr 2013 07:22:34 +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: <1365486611.2d3cfe269b26b5404589c9b3d12ff024f09bbc94.yamakuzure@gentoo> Subject: [gentoo-commits] proj/ufed:master commit in: / X-VCS-Repository: proj/ufed X-VCS-Files: ufed-curses-help.c X-VCS-Directories: / X-VCS-Committer: yamakuzure X-VCS-Committer-Name: Sven Eden X-VCS-Revision: 2d3cfe269b26b5404589c9b3d12ff024f09bbc94 X-VCS-Branch: master Date: Tue, 9 Apr 2013 07:22:34 +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: 0bb1f885-89a9-4fb0-ab31-81ffa9bee43c X-Archives-Hash: 02682f2ce962c9c3af8fdc86d954cb3a commit: 2d3cfe269b26b5404589c9b3d12ff024f09bbc94 Author: Sven Eden gmx de> AuthorDate: Tue Apr 9 05:50:11 2013 +0000 Commit: Sven Eden gmx de> CommitDate: Tue Apr 9 05:50:11 2013 +0000 URL: http://git.overlays.gentoo.org/gitweb/?p=proj/ufed.git;a=commit;h=2d3cfe26 Changed the colors of highlighted lines in the help screen to make them better recognizable. --- ufed-curses-help.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/ufed-curses-help.c b/ufed-curses-help.c index 7a9115d..7254a9d 100644 --- a/ufed-curses-help.c +++ b/ufed-curses-help.c @@ -303,7 +303,7 @@ static int drawline(sFlag* line, bool highlight) wattrset(win(List), COLOR_PAIR(5) | A_BOLD); } else { if (highlight) - wattrset(win(List), COLOR_PAIR(2) | A_BOLD | A_REVERSE); + wattrset(win(List), COLOR_PAIR(6) | A_BOLD); else wattrset(win(List), COLOR_PAIR(3)); }