Skip to content

Commit f917147

Browse files
committed
Merge remote-tracking branch 'origin/develop'
2 parents ea08909 + 768a3c1 commit f917147

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

pyk/src/pyk/kcfg/tui.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@ def update(self, text: str) -> None:
7979
self.text = text
8080

8181
def compose(self) -> ComposeResult:
82-
yield Static(self.text)
82+
yield Static(self.text, markup=False)
8383

8484
def watch_text(self) -> None:
8585
self.query_one(Static).update(self.text)
@@ -95,7 +95,7 @@ def update(self, text: str) -> None:
9595
self.text = text
9696

9797
def compose(self) -> ComposeResult:
98-
yield Static(self.text)
98+
yield Static(self.text, markup=False)
9999

100100
def watch_text(self) -> None:
101101
self.query_one(Static).update(self.text)

0 commit comments

Comments
 (0)