Files
gio/ui
Larry Clapp 56926a0449 ui/app: fix init() appending '' to os.Args
init() says

  args := strings.Split(extraArgs, "|")
  os.Args = append(os.Args, args...)

strings.Split says

  If s does not contain sep and sep is not empty, Split returns a slice
  of length 1 whose only element is s.

which means init() adds a blank arg to the end of os.Args when extraArgs
is empty.  This fixes that.

Signed-off-by: Larry Clapp <larry@theclapp.org>
2019-08-14 10:35:08 +02:00
..
2019-08-11 19:50:03 +02:00
2019-08-11 18:57:12 +02:00
2019-08-11 19:36:46 +02:00
2019-08-11 19:36:46 +02:00
2019-08-11 19:50:03 +02:00
2019-08-11 19:50:03 +02:00
2019-08-11 19:39:35 +02:00
2019-08-11 16:46:03 +02:00
2019-07-03 20:26:19 +02:00
2019-08-07 20:40:01 +02:00
2019-08-09 20:35:04 +02:00
2019-08-09 20:35:04 +02:00
2019-08-08 14:54:51 +02:00