From cd4128f63f5486ca0f513c8e39ac97feaae4c446 Mon Sep 17 00:00:00 2001 From: cancel Date: Fri, 14 Dec 2018 00:55:59 +0900 Subject: [PATCH] Cleanup --- term_util.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/term_util.c b/term_util.c index f6581d5..534b8f2 100644 --- a/term_util.c +++ b/term_util.c @@ -104,9 +104,9 @@ void qnav_draw_title(Qnav_block* qb, char const* title, int attr) { void qnav_set_title(Qnav_block* qb, char const* title) { qb->title = title; } void qnav_print_frame(Qnav_block* qb, bool active) { - qnav_draw_box_attr(qb, active ? A_BOLD : A_DIM); + qnav_draw_box_attr(qb, active ? A_NORMAL : A_DIM); if (qb->title) { - qnav_draw_title(qb, qb->title, active ? A_BOLD : A_DIM); + qnav_draw_title(qb, qb->title, active ? A_NORMAL : A_DIM); } }