Codebase list golang-github-vbauerster-mpb / 8e911d0
DSyncSpaceR Vladimir Bauer 8 years ago
1 changed file(s) with 5 addition(s) and 2 deletion(s). Raw diff Collapse all Expand all
1212 // | foo| b| Without DidentRight
1313 DidentRight = 1 << iota
1414
15 // DwidthSync will auto sync max width.
16 // Makes sense when there're more than one bar
15 // DwidthSync same column width sync participation bit.
16 // Effective on multiple bars only.
1717 DwidthSync
1818
1919 // DextraSpace adds extra space, makes sense with DwidthSync only.
2323
2424 // DSyncSpace is shortcut for DwidthSync|DextraSpace
2525 DSyncSpace = DwidthSync | DextraSpace
26
27 // DSyncSpace is shortcut for DwidthSync|DextraSpace|DidentRight
28 DSyncSpaceR = DwidthSync | DextraSpace | DidentRight
2629 )
2730
2831 // Statistics represents statistics of the progress bar.