finish upgrade
All checks were successful
ci/woodpecker/push/woodpecker Pipeline was successful

This commit is contained in:
2023-04-07 22:42:54 -04:00
parent 2118e8b790
commit 0a5cea9fb1
7 changed files with 47 additions and 33 deletions

View File

@@ -5,7 +5,7 @@ import (
"strings"
"git.yetaga.in/alazyreader/library/media"
"github.com/gdamore/tcell"
"github.com/gdamore/tcell/v2"
)
type Drawable interface {
@@ -37,8 +37,8 @@ const (
)
var (
StyleActive = tcell.Style(0).Foreground(tcell.ColorWhite).Background(tcell.ColorBlack)
StyleInactive = tcell.Style(0).Foreground(tcell.ColorGray).Background(tcell.ColorBlack)
StyleActive = tcell.Style{}.Foreground(tcell.ColorWhite).Background(tcell.ColorBlack)
StyleInactive = tcell.Style{}.Foreground(tcell.ColorGray).Background(tcell.ColorBlack)
)
// A Container has no visible UI of its own, but arranges sub-components on the screen.