Skip to content

Commit

Permalink
chore(reader): Update feed group selectable and color
Browse files Browse the repository at this point in the history
  • Loading branch information
bow committed Dec 26, 2023
1 parent 4c69bb0 commit 52731a9
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion internal/reader/feeds_pane.go
Original file line number Diff line number Diff line change
Expand Up @@ -79,6 +79,7 @@ func (fp *feedsPane) initTree() {

tree := tview.NewTreeView().
SetRoot(root).
SetGraphicsColor(fp.theme.FeedsGroup).
SetCurrentNode(root).
SetTopLevel(1)

Expand Down Expand Up @@ -190,7 +191,7 @@ func groupNode(ug feedUpdatedGroup, theme *Theme) *tview.TreeNode {
return tview.NewTreeNode(ug.Text(theme)).
SetReference(ug).
SetColor(theme.FeedsGroup).
SetSelectable(false)
SetSelectable(true)
}

func whenUpdated(feed *internal.Feed) feedUpdatedGroup {
Expand Down

0 comments on commit 52731a9

Please sign in to comment.