diff options
| author | Jeff Carr <[email protected]> | 2019-05-31 06:58:23 -0700 |
|---|---|---|
| committer | Jeff Carr <[email protected]> | 2019-05-31 06:58:23 -0700 |
| commit | 64401667b62a7621c2e71bc0f47c9f0d47c4106f (patch) | |
| tree | 87c6c16928a548fed0953c40e3eaccfc2256ee55 /splash.go | |
| parent | aec7fc3b5780d396641f4f26df55009976d6449f (diff) | |
continue variable and structure improvements
Signed-off-by: Jeff Carr <[email protected]>
Diffstat (limited to 'splash.go')
| -rw-r--r-- | splash.go | 10 |
1 files changed, 5 insertions, 5 deletions
@@ -23,12 +23,12 @@ func ShowSplashBox(wm *GuiWindow, newText *ui.AttributedString) *ui.Box { newbox.SetPadded(true) // initialize the GuiArea{} - wm.AH = new(GuiArea) - wm.AH.WM = wm - wm.AH.UiAttrstr = newText - makeSplashArea(wm, wm.AH) + wm.Area = new(GuiArea) + wm.Area.Window = wm + wm.Area.UiAttrstr = newText + makeSplashArea(wm, wm.Area) - newbox.Append(wm.AH.UiArea, true) + newbox.Append(wm.Area.UiArea, true) if runtime.GOOS == "linux" { newbox.Append(ui.NewLabel("OS: Linux"), false) |
