Fixed horrible crash bug with opening vim.

This commit is contained in:
Storm Dragon
2026-05-10 22:31:17 -04:00
parent c7d74726da
commit 9e2d5a89b3
3 changed files with 15 additions and 1 deletions
+1 -1
View File
@@ -4,5 +4,5 @@
# Fenrir TTY screen reader
# By Chrys, Storm Dragon, and contributors.
version = "2026.05.09.1"
version = "2026.05.10"
code_name = "testing"
@@ -52,6 +52,10 @@ class FenrirScreen(pyte.Screen):
kwargs.pop("private", None)
super(FenrirScreen, self).set_margins(*args, **kwargs)
def select_graphic_rendition(self, *args, **kwargs):
kwargs.pop("private", None)
super(FenrirScreen, self).select_graphic_rendition(*args, **kwargs)
class Terminal:
def __init__(self, columns, lines, p_in, env=None):