up
This commit is contained in:
parent
1b8c97f5e7
commit
744fdcd0d9
9
app.go
9
app.go
@ -38,11 +38,12 @@ func NewApp() *Application {
|
||||
|
||||
Sep := widget.NewSeparator()
|
||||
|
||||
SpotLabelDX := canvas.NewText("t", color.Black)
|
||||
SpotLabelFreqMhz := canvas.NewText("t", color.Black)
|
||||
SpotLabelBand := canvas.NewText("t", color.Black)
|
||||
SpotLabelDX := canvas.NewText("DX: ", color.Black)
|
||||
SpotLabelFreqMhz := canvas.NewText("Freq: ", color.Black)
|
||||
SpotLabelBand := canvas.NewText("Band: ", color.Black)
|
||||
Spot := container.NewHBox(SpotLabelDX, SpotLabelFreqMhz, SpotLabelBand)
|
||||
|
||||
content := container.NewVBox(servicesLabel, Sep, TCPClientAll, FlexRadioAll, Sep, SpotLabelDX, SpotLabelFreqMhz, SpotLabelBand)
|
||||
content := container.NewVBox(servicesLabel, Sep, TCPClientAll, FlexRadioAll, Sep, Spot)
|
||||
w.SetContent(content)
|
||||
|
||||
app := &Application{
|
||||
|
@ -2,7 +2,6 @@ package main
|
||||
|
||||
import (
|
||||
"fmt"
|
||||
"log"
|
||||
"os"
|
||||
|
||||
"gopkg.in/yaml.v2"
|
||||
@ -51,13 +50,13 @@ func NewConfig(configPath string) *Config {
|
||||
|
||||
file, err := os.Open(configPath)
|
||||
if err != nil {
|
||||
log.Println("could not open config file")
|
||||
Log.Errorln("could not open config file")
|
||||
}
|
||||
defer file.Close()
|
||||
d := yaml.NewDecoder(file)
|
||||
|
||||
if err := d.Decode(&Cfg); err != nil {
|
||||
log.Println("could not decod config file")
|
||||
Log.Errorln("could not decod config file")
|
||||
}
|
||||
|
||||
return Cfg
|
||||
|
Loading…
x
Reference in New Issue
Block a user