diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/c_init.go | 7 | ||||
-rw-r--r-- | src/i_ui.go | 1 |
2 files changed, 4 insertions, 4 deletions
diff --git a/src/c_init.go b/src/c_init.go index 58b71c5..130ca96 100644 --- a/src/c_init.go +++ b/src/c_init.go @@ -179,18 +179,19 @@ func c_write_styles(file string, opts HardStyle, load_err *[]error) { } func c_get_options(dir string, load_err *[]error) HardOpts { - opts := HardOpts{} + opts := DEFAULT_OPTS file := dir + "/" + CONF_FILE_NAME if _, err := os.Stat(file); os.IsNotExist(err) { c_write_options(file, DEFAULT_OPTS, load_err) - return DEFAULT_OPTS + opts.file = file + return opts } opts, err := c_parse_opts(file) opts.file = file if err != nil { *load_err = append(*load_err, err) - return DEFAULT_OPTS + return opts } return opts } diff --git a/src/i_ui.go b/src/i_ui.go index 776988d..21df155 100644 --- a/src/i_ui.go +++ b/src/i_ui.go @@ -784,7 +784,6 @@ func i_ui(data_dir string) { opts = DEFAULT_OPTS } else { opts = c_get_options(conf_dir, &load_err) - // FIX: options not written correctly on welcome mode + void } styles := c_get_styles(conf_dir, &load_err) i_init_styles(&ui, styles) |