Renamed `Gauge.Align` to `Gauge.LabelAlign`.

This commit is contained in:
Matteo Kloiber 2015-04-21 18:07:48 +02:00
parent 137d2a7eb2
commit 83a3a236f4
2 changed files with 4 additions and 4 deletions

View File

@ -54,7 +54,7 @@ func main() {
g3.Y = 11
g3.Border.Label = "Gauge with custom label"
g3.Label = "{{percent}}% (100MBs free)"
g3.Align = termui.AlignRight
g3.LabelAlign = termui.AlignRight
termui.Render(g0, g1, g2, g3)

View File

@ -37,7 +37,7 @@ type Gauge struct {
BarColor Attribute
PercentColor Attribute
Label string
Align Align
LabelAlign Align
}
// NewGauge return a new gauge with current theme.
@ -47,7 +47,7 @@ func NewGauge() *Gauge {
PercentColor: theme.GaugePercent,
BarColor: theme.GaugeBar,
Label: "{{percent}}%",
Align: AlignCenter,
LabelAlign: AlignCenter,
}
g.Width = 12
@ -80,7 +80,7 @@ func (g *Gauge) Buffer() []Point {
pry := g.innerY + g.innerHeight/2
rs := str2runes(s)
var pos int
switch g.Align {
switch g.LabelAlign {
case AlignLeft:
pos = 0