aboutsummaryrefslogtreecommitdiffstats
path: root/termui/msg_popup.go
diff options
context:
space:
mode:
Diffstat (limited to 'termui/msg_popup.go')
-rw-r--r--termui/msg_popup.go4
1 files changed, 2 insertions, 2 deletions
diff --git a/termui/msg_popup.go b/termui/msg_popup.go
index af752106..4452427e 100644
--- a/termui/msg_popup.go
+++ b/termui/msg_popup.go
@@ -4,7 +4,7 @@ import (
"fmt"
"github.com/MichaelMure/git-bug/util/text"
- "github.com/jesseduffield/gocui"
+ "github.com/MichaelMure/gocui"
)
const msgPopupView = "msgPopupView"
@@ -50,7 +50,7 @@ func (ep *msgPopup) layout(g *gocui.Gui) error {
x0 := (maxX - width) / 2
y0 := (maxY - height) / 2
- v, err := g.SetView(msgPopupView, x0, y0, x0+width, y0+height, 0)
+ v, err := g.SetView(msgPopupView, x0, y0, x0+width, y0+height)
if err != nil {
if err != gocui.ErrUnknownView {
return err