From cc85ca9995b9936ec916582642e2ab366b3811f2 Mon Sep 17 00:00:00 2001 From: Jakob Edding <15202881+JakobEdding@users.noreply.github.com> Date: Mon, 19 Feb 2024 22:41:14 +0100 Subject: [PATCH] Use configured log fgColor to print log markers --- internal/view/log.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/internal/view/log.go b/internal/view/log.go index 3fdc49ff2c..a5df9bceff 100644 --- a/internal/view/log.go +++ b/internal/view/log.go @@ -453,7 +453,7 @@ func (l *Log) clearCmd(*tcell.EventKey) *tcell.EventKey { func (l *Log) markCmd(*tcell.EventKey) *tcell.EventKey { _, _, w, _ := l.GetRect() - fmt.Fprintf(l.ansiWriter, "\n[white:-:b]%s[-:-:-]", strings.Repeat("─", w-4)) + fmt.Fprintf(l.ansiWriter, "\n[%s:-:b]%s[-:-:-]", l.app.Styles.Views().Log.FgColor.String(), strings.Repeat("─", w-4)) l.follow = true return nil