From: Kevin Day Date: Fri, 10 Feb 2023 01:13:01 +0000 (-0600) Subject: Bugfix: Consistently use the same color context for the entry name. X-Git-Tag: 0.6.4~57 X-Git-Url: https://git.kevux.org/?a=commitdiff_plain;h=47a71cdaa475cb44a00bc2e74c6b11a28b22eaa8;p=fll Bugfix: Consistently use the same color context for the entry name. --- diff --git a/level_3/controller/c/entry/private-entry.c b/level_3/controller/c/entry/private-entry.c index 36a9435..3da8e6a 100644 --- a/level_3/controller/c/entry/private-entry.c +++ b/level_3/controller/c/entry/private-entry.c @@ -892,7 +892,7 @@ extern "C" { controller_lock_print(global->main->output.to, global->thread); fl_print_format("%rProcessing %r%r item '", global->main->output.to.stream, f_string_eol_s, failsafe ? controller_entry_print_failsafe_s : f_string_empty_s, is_entry ? controller_entry_s : controller_exit_s); - fl_print_format("%[%Q%]'.%r", global->main->output.to.stream, global->main->context.set.notable, cache->action.name_item, global->main->context.set.notable, f_string_eol_s); + fl_print_format("%[%Q%]'.%r", global->main->output.to.stream, global->main->context.set.title, cache->action.name_item, global->main->context.set.notable, f_string_eol_s); controller_unlock_print_flush(global->main->output.to, global->thread); }