Files
gio/ui/app
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-09 22:27:33 +02:00
2019-03-31 10:47:22 +02:00
2019-03-31 10:47:22 +02:00
2019-03-31 10:47:22 +02:00
2019-08-12 00:29:18 +02:00
2019-03-31 10:47:22 +02:00
2019-03-31 10:47:22 +02:00
2019-03-31 10:47:22 +02:00
2019-03-31 10:47:22 +02:00
2019-03-31 10:47:22 +02:00
2019-03-31 10:47:22 +02:00
2019-03-31 10:47:22 +02:00
2019-03-31 10:47:22 +02:00
2019-03-31 10:47:22 +02:00
2019-08-09 22:27:33 +02:00