1
0
mirror of https://github.com/rivo/tview.git synced 2025-04-24 13:48:56 +08:00

Revert "formatting fixes"

This reverts commit e4b4b7fe823043c55d9e0d98512552eed5d9b2d2.
This commit is contained in:
ajcarvajal 2020-01-08 09:43:49 -05:00
parent e4b4b7fe82
commit 93e6a490c3

View File

@ -74,10 +74,7 @@ var rootNode = &node{
{text: "Tree list starts one level down"},
{text: "Works better for lists where no top node is needed"},
{text: "Switch to this layout", selected: func() {
tree.SetAlign(false).
SetTopLevel(1).
SetGraphics(true).
SetPrefixes(nil)
tree.SetAlign(false).SetTopLevel(1).SetGraphics(true).SetPrefixes(nil)
treeCode.SetText(strings.Replace(treeAllCode, "$$$", treeTopLevelCode, -1))
}},
}},
@ -85,10 +82,7 @@ var rootNode = &node{
{text: "For trees that are similar to lists"},
{text: "Hierarchy shown only in line drawings"},
{text: "Switch to this layout", selected: func() {
tree.SetAlign(true).
SetTopLevel(0).
SetGraphics(true).
SetPrefixes(nil)
tree.SetAlign(true).SetTopLevel(0).SetGraphics(true).SetPrefixes(nil)
treeCode.SetText(strings.Replace(treeAllCode, "$$$", treeAlignCode, -1))
}},
}},
@ -96,10 +90,7 @@ var rootNode = &node{
{text: "Best for hierarchical bullet point lists"},
{text: "You can define your own prefixes per level"},
{text: "Switch to this layout", selected: func() {
tree.SetAlign(false).
SetTopLevel(1).
SetGraphics(false).
SetPrefixes([]string{"[red]* ", "[darkcyan]- ", "[darkmagenta]- "})
tree.SetAlign(false).SetTopLevel(1).SetGraphics(false).SetPrefixes([]string{"[red]* ", "[darkcyan]- ", "[darkmagenta]- "})
treeCode.SetText(strings.Replace(treeAllCode, "$$$", treePrefixCode, -1))
}},
}},
@ -107,10 +98,7 @@ var rootNode = &node{
{text: "Lines illustrate hierarchy"},
{text: "Basic indentation"},
{text: "Switch to this layout", selected: func() {
tree.SetAlign(false).
SetTopLevel(0).
SetGraphics(true).
SetPrefixes(nil)
tree.SetAlign(false).SetTopLevel(0).SetGraphics(true).SetPrefixes(nil)
treeCode.SetText(strings.Replace(treeAllCode, "$$$", treeBasicCode, -1))
}},
}},