Fixed empty vte commit error

This commit is contained in:
2025-11-30 00:59:37 -06:00
parent 22736147e6
commit 5e5cc50ba8

View File

@@ -93,6 +93,9 @@ class VteWidget(Vte.Terminal):
if not text.encode() == "\r".encode(): return
text, attributes = self.get_text()
if not text: return
lines = text.strip().splitlines()
command_ran = None