|
@@ -235,17 +235,8 @@ func (p *Panel) UpdateLine(index int) string {
|
|
|
|
|
|
// Position Cursor at the "end" of the panel
|
|
// Position Cursor at the "end" of the panel
|
|
func (p *Panel) GotoEnd() string {
|
|
func (p *Panel) GotoEnd() string {
|
|
- var row, col int
|
|
|
|
- row = p.Y
|
|
|
|
- col = p.X
|
|
|
|
- if p.Style > 0 {
|
|
|
|
- row++
|
|
|
|
- col += 2
|
|
|
|
- }
|
|
|
|
- row += len(p.Lines)
|
|
|
|
- col += p.Width
|
|
|
|
-
|
|
|
|
- return Goto(col, row)
|
|
|
|
|
|
+ rx, by := p.RightBottomPos()
|
|
|
|
+ return Goto(rx, by)
|
|
}
|
|
}
|
|
|
|
|
|
// Is the top line of this style a single line?
|
|
// Is the top line of this style a single line?
|