add emoji

This commit is contained in:
raziman 2020-07-26 00:08:45 +08:00
parent 1e3a8e60f5
commit e4c64e14ab

View File

@ -725,6 +725,7 @@ func populate(root *tview.TreeNode, rootPath string) error {
}
child.SetReference(audioFile)
child.SetText(fmt.Sprintf("🎵 %s", songName))
root.AddChild(child)
}
@ -739,6 +740,7 @@ func populate(root *tview.TreeNode, rootPath string) error {
}
child.SetReference(audioFile)
child.SetColor(gomu.accentColor)
child.SetText(fmt.Sprintf("📁 %s", songName))
root.AddChild(child)
populate(child, path)