diff options
| -rw-r--r-- | main.go | 2 | ||||
| -rw-r--r-- | ui.go | 2 |
2 files changed, 2 insertions, 2 deletions
@@ -123,7 +123,7 @@ func setCompressor(c Compressor) { func loop() { g.SingleWindow().Layout( - engineDisplacementRow(), + displacementRow(), g.Table(). Size(g.Auto, 190). Rows( @@ -13,7 +13,7 @@ func red() color.RGBA { return color.RGBA{255, 0, 0, 255} } -func engineDisplacementRow() *g.RowWidget { +func displacementRow() *g.RowWidget { s := VolumeUnits[volumeUnitIndex] unit, err := ParseVolumeUnit(s) Check(err) |