mirror of
https://github.com/kovidgoyal/kitty
synced 2026-07-25 17:52:02 +02:00
Fix scrollback_lines opt not being used
This commit is contained in:
@@ -367,8 +367,8 @@ static PyMethodDef methods[] = {
|
||||
};
|
||||
|
||||
static PyMemberDef members[] = {
|
||||
{"xnum", T_UINT, offsetof(LineBuf, xnum), 0, "xnum"},
|
||||
{"ynum", T_UINT, offsetof(LineBuf, ynum), 0, "ynum"},
|
||||
{"xnum", T_UINT, offsetof(LineBuf, xnum), READONLY, "xnum"},
|
||||
{"ynum", T_UINT, offsetof(LineBuf, ynum), READONLY, "ynum"},
|
||||
{NULL} /* Sentinel */
|
||||
};
|
||||
|
||||
|
||||
Reference in New Issue
Block a user