Skip to content
This repository was archived by the owner on May 3, 2024. It is now read-only.

Commit 4b70c8a

Browse files
committed
Merge branch 'master' of github.com:mephux/komanda-cli
2 parents 99c7633 + c5c78dc commit 4b70c8a

File tree

5 files changed

+7
-4
lines changed

5 files changed

+7
-4
lines changed

komanda/client/channel.go

+2
Original file line numberDiff line numberDiff line change
@@ -119,6 +119,8 @@ func (channel *Channel) Render(private bool) error {
119119
// view.Highlight = true
120120
view.Frame = false
121121

122+
view.BgColor = gocui.ColorDefault
123+
122124
if !private {
123125
fmt.Fprintln(view, "\n\n")
124126
} else {

komanda/ui/header.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ func HeaderView(g *gocui.Gui, x, y, maxX, maxY int) error {
1616
}
1717

1818
// v.FgColor = gocui.ColorGreen
19-
// v.BgColor = gocui.ColorGreen
19+
v.BgColor = gocui.ColorDefault
2020

2121
v.Autoscroll = false
2222
v.Editable = false

komanda/ui/input.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ func InputView(g *gocui.Gui, x, y, maxX, maxY int) error {
1919
logger.Logger.Println(" CHANGE:", "input", x, y, maxX, maxY)
2020

2121
// v.FgColor = gocui.ColorGreen
22-
// v.BgColor = gocui.ColorGreen
22+
v.BgColor = gocui.ColorDefault
2323

2424
v.Autoscroll = false
2525
v.Editable = true

komanda/ui/layout.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ func Layout(g *gocui.Gui) error {
4747
view.Frame = false
4848

4949
// view.FgColor = gocui.ColorGreen
50-
// view.BgColor = gocui.ColorGreen
50+
view.BgColor = gocui.ColorDefault
5151

5252
fmt.Fprintln(view, "")
5353
fmt.Fprintln(view, Logo)

komanda/ui/menu.go

+2-1
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,8 @@ func MenuView(g *gocui.Gui, maxX, maxY int) error {
2121
}
2222

2323
// v.FgColor = gocui.ColorGreen
24-
// v.BgColor = gocui.ColorBlue
24+
v.BgColor = gocui.ColorDefault
25+
2526
v.Autoscroll = false
2627
v.Editable = false
2728
v.Wrap = false

0 commit comments

Comments
 (0)