About dialog fixes and lists columns upgrades.

About dialog should now be fixed everywhere. Previously it
causes crash on macOS and Windows. See https://github.com/mattn/go-gtk/issues/282

Columns now can be rearranged and resized. No saving or restoring yet.
This commit is contained in:
2016-10-07 17:23:50 +05:00
parent def03ee25d
commit 296e495fbf
2 changed files with 32 additions and 0 deletions

View File

@@ -35,6 +35,10 @@ func ShowAboutDialog() {
artists = append(artists, "UrTConnector team, for great icons and allowing to use them.")
ad.SetArtists(artists)
var documenters []string
documenters = append(documenters, "No one at this moment")
ad.SetDocumenters(documenters)
ad.SetCopyright("Stanislav N. aka pztrn")
ad.SetLicense(GPL_LICENSE)