зеркало из https://github.com/xamarin/XtermSharp.git
Cols are user visible based, not zero based
This commit is contained in:
Родитель
0c61b010aa
Коммит
635cffcf94
|
@ -170,7 +170,7 @@ namespace XtermSharp {
|
|||
|
||||
// ensure the bounds are inside the terminal.
|
||||
row = Math.Max (row, 0);
|
||||
col = Math.Max (Math.Min (col, terminal.Buffer.Cols), 0);
|
||||
col = Math.Max (Math.Min (col, terminal.Buffer.Cols - 1), 0);
|
||||
|
||||
row += buffer.YDisp;
|
||||
|
||||
|
|
Загрузка…
Ссылка в новой задаче