summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKevin Chabowski <kevin@kch42.de>2013-08-18 14:02:09 +0200
committerKevin Chabowski <kevin@kch42.de>2013-08-18 14:02:09 +0200
commitaca2312bfbfc2d4c14b4cec3332ec0a46f1e3cdb (patch)
tree682a94d35127d3dc9dffc0f19b4f0effb58063da
parentde80d28f8f7b438b3f3eb887c22dd98477a2db62 (diff)
downloadbiomed-aca2312bfbfc2d4c14b4cec3332ec0a46f1e3cdb.tar.gz
biomed-aca2312bfbfc2d4c14b4cec3332ec0a46f1e3cdb.tar.bz2
biomed-aca2312bfbfc2d4c14b4cec3332ec0a46f1e3cdb.zip
Renamed project to biomed
-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)