aboutsummaryrefslogtreecommitdiff
path: root/ui/ui.go
diff options
context:
space:
mode:
Diffstat (limited to 'ui/ui.go')
-rw-r--r--ui/ui.go12
1 files changed, 6 insertions, 6 deletions
diff --git a/ui/ui.go b/ui/ui.go
index eab7642..131a8c1 100644
--- a/ui/ui.go
+++ b/ui/ui.go
@@ -23,9 +23,9 @@ import (
)
type GomuksUI struct {
- gmx ifc.Gomuks
- app *tview.Application
- views *tview.Pages
+ gmx ifc.Gomuks
+ app *tview.Application
+ views *tview.Pages
mainView *MainView
loginView *tview.Form
@@ -38,9 +38,9 @@ func init() {
func NewGomuksUI(gmx ifc.Gomuks) (ui *GomuksUI) {
ui = &GomuksUI{
- gmx: gmx,
- app: gmx.App(),
- views: tview.NewPages(),
+ gmx: gmx,
+ app: gmx.App(),
+ views: tview.NewPages(),
}
ui.views.SetChangedFunc(ui.Render)
return