diff options
author | Joe <rbo@gmx.us> | 2024-04-22 20:20:20 +0200 |
---|---|---|
committer | Joe <rbo@gmx.us> | 2024-04-22 20:20:20 +0200 |
commit | ba1ac2ecf91277eb47c21b2a672cd7f6fdbfbcc5 (patch) | |
tree | 179cf676cce3ebf2c34ea70f604b610247ac97bd /src/i_host.go | |
parent | go (diff) | |
download | hardflip-ba1ac2ecf91277eb47c21b2a672cd7f6fdbfbcc5.tar.gz hardflip-ba1ac2ecf91277eb47c21b2a672cd7f6fdbfbcc5.tar.bz2 hardflip-ba1ac2ecf91277eb47c21b2a672cd7f6fdbfbcc5.tar.xz hardflip-ba1ac2ecf91277eb47c21b2a672cd7f6fdbfbcc5.tar.zst hardflip-ba1ac2ecf91277eb47c21b2a672cd7f6fdbfbcc5.zip |
wip
Diffstat (limited to 'src/i_host.go')
-rw-r--r-- | src/i_host.go | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/src/i_host.go b/src/i_host.go index c30c444..2ad71d2 100644 --- a/src/i_host.go +++ b/src/i_host.go @@ -51,8 +51,6 @@ package main -import "github.com/gdamore/tcell/v2" - func i_host_panel_dirs(ui HardUI, icons bool, dir_icon uint8, dir *DirsNode, curr *DirsNode, line int) { style := ui.style[DIR_STYLE] @@ -83,8 +81,7 @@ func i_host_panel_host(ui HardUI, icons bool, line int) { style := ui.style[DEF_STYLE] if yank != nil && host == yank.Host { - style = style.Foreground(tcell.ColorPurple).Bold(true) - // TODO: here + style = ui.style[YANK_STYLE] } if host == curr { // style = style.Background(tcell.ColorBlack) |