fix skew between bmath and I
Signed-off-by: Jeff Carr <jcarr@wit.com>
This commit is contained in:
parent
952457ad02
commit
3f852103db
|
@ -39,7 +39,7 @@ func debugClick(b *gui.GuiButton) {
|
||||||
Xbox1 = gui.NewBox(Ybox1, gui.Xaxis, "subdomain Y1 test")
|
Xbox1 = gui.NewBox(Ybox1, gui.Xaxis, "subdomain Y1 test")
|
||||||
makeButton(Xbox1, nil, nil, "List all windows & tabs", "SUBDOMAIN", func (*gui.GuiButton) {
|
makeButton(Xbox1, nil, nil, "List all windows & tabs", "SUBDOMAIN", func (*gui.GuiButton) {
|
||||||
log.Println("gui.DumpBoxes()")
|
log.Println("gui.DumpBoxes()")
|
||||||
//gui.DumpBoxes()
|
gui.DumpBoxes()
|
||||||
})
|
})
|
||||||
makeButton(Xbox1, nil, nil, "Debug IPv6", "SUBDOMAIN", func (*gui.GuiButton) {
|
makeButton(Xbox1, nil, nil, "Debug IPv6", "SUBDOMAIN", func (*gui.GuiButton) {
|
||||||
log.Println("Need to add IPv6 debugging here")
|
log.Println("Need to add IPv6 debugging here")
|
||||||
|
|
|
@ -14,7 +14,7 @@ func showSplashBox(gw *gui.GuiWindow) *gui.GuiBox {
|
||||||
log.Println("ShowSplashBox() START")
|
log.Println("ShowSplashBox() START")
|
||||||
text := getNEWTEXT()
|
text := getNEWTEXT()
|
||||||
// TODO: turn 'Welcome' into a i18n for translations
|
// TODO: turn 'Welcome' into a i18n for translations
|
||||||
box := gui.ShowTextBox(gw, text, splashClick)
|
box := gui.ShowTextBox(gw, text, splashClick, "Welcome")
|
||||||
|
|
||||||
if runtime.GOOS == "linux" {
|
if runtime.GOOS == "linux" {
|
||||||
gui.NewLabel(box,"OS: Linux")
|
gui.NewLabel(box,"OS: Linux")
|
||||||
|
|
Loading…
Reference in New Issue