Got things back to normal with a couple bug fixes

This commit is contained in:
Belac Darkstorm
2017-04-06 09:26:21 -05:00
parent bc63e6d10f
commit d7410bb88f
2 changed files with 134 additions and 2 deletions
+2 -2
View File
@@ -20,8 +20,8 @@ type app struct {
ini *os.File
}
func (a *app) getTreeIter(store *gtk.TreeStore, parent *gtk.TreeIter) *gtk.TreeIter {
it := store.Append(parent)
func (a *app) getTreeIter(store *gtk.TreeStore) *gtk.TreeIter {
it := store.Append(nil)
store.SetValue(it, 0, a.icon)
store.SetValue(it, 1, a.name)
if len(a.ex) > 1 {