Codebase list golang-github-vbauerster-mpb / e07667d
fixup! refactoring: lineCount => lines Vladimir Bauer 4 years ago
1 changed file(s) with 2 addition(s) and 2 deletion(s). Raw diff Collapse all Expand all
2525 return err
2626 }
2727
28 info.CursorPosition.Y -= int16(w.lineCount)
28 info.CursorPosition.Y -= int16(w.lines)
2929 if info.CursorPosition.Y < 0 {
3030 info.CursorPosition.Y = 0
3131 }
3939 X: info.Window.Left,
4040 Y: info.CursorPosition.Y,
4141 }
42 count := uint32(info.Size.X) * uint32(w.lineCount)
42 count := uint32(info.Size.X) * uint32(w.lines)
4343 _, _, _ = procFillConsoleOutputCharacter.Call(
4444 uintptr(w.fd),
4545 uintptr(' '),