From b47cf6d5a525c39db268c2f7b77e2b7497843b17 Mon Sep 17 00:00:00 2001 From: Gokcehan Date: Sat, 24 Dec 2022 23:15:46 +0300 Subject: revert dim colors for previews cc #924 #1038 --- ui.go | 7 ------- 1 file changed, 7 deletions(-) diff --git a/ui.go b/ui.go index 468141e..2ed56c8 100644 --- a/ui.go +++ b/ui.go @@ -341,7 +341,6 @@ const LineNumberColor = tcell.ColorOlive const SelectionColor = tcell.ColorPurple const YankColor = tcell.ColorOlive const CutColor = tcell.ColorMaroon -const DimCursorColor = tcell.ColorGrey func (win *win) printDir(screen tcell.Screen, dir *dir, context *dirContext, dirStyle *dirStyle) { if win.w < 5 || dir == nil { @@ -349,9 +348,6 @@ func (win *win) printDir(screen tcell.Screen, dir *dir, context *dirContext, dir } messageStyle := tcell.StyleDefault.Reverse(true) - if dirStyle.previewing { - messageStyle = messageStyle.Foreground(DimCursorColor) - } if dir.noPerm { win.print(screen, 2, 0, messageStyle, "permission denied") @@ -438,9 +434,6 @@ func (win *win) printDir(screen tcell.Screen, dir *dir, context *dirContext, dir if i == dir.pos { st = st.Reverse(true) - if dirStyle.previewing { - st = st.Foreground(DimCursorColor) - } } var s []rune -- cgit v1.2.3