summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--main.go5
1 files changed, 3 insertions, 2 deletions
diff --git a/main.go b/main.go
index 090f7db..af79775 100644
--- a/main.go
+++ b/main.go
@@ -47,7 +47,8 @@ func (g *GUI) openWorld(path string) {
func (g *GUI) aboutDlg() {
dlg := gtk.NewAboutDialog()
- dlg.SetName("biome-editor")
+ dlg.SetProgramName("biomed")
+ dlg.SetComments("A Minecraft Biome Editor")
dlg.SetVersion("β")
dlg.SetCopyright("© 2013 by Kevin Chabowski")
dlg.SetAuthors([]string{"Kevin Chabowski <kevin@kch42.de>"})
@@ -226,7 +227,7 @@ func (g *GUI) mkSidebar() *gtk.ScrolledWindow {
func (g *GUI) Init() {
g.window = gtk.NewWindow(gtk.WINDOW_TOPLEVEL)
- g.window.SetTitle("Biome Editor")
+ g.window.SetTitle("biomed")
menubar := g.mkMenuBar()
vbox := gtk.NewVBox(false, 0)