You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
It looks like the inline_no_clear option was broken in v0.77.0, from a quick git bisect the culprit seems to be commit 8c01ef7.
If you run the app below where inline_no_clear=True, the app output is cleared on exit:
fromtextual.appimportApp, ComposeResultfromtextual.widgetsimportStaticclassInlineNoClearApp(App):
defcompose(self) ->ComposeResult:
yieldStatic("Quitting should not clear the app output")
if__name__=="__main__":
app=InlineNoClearApp()
app.run(inline=True, inline_no_clear=True)
The text was updated successfully, but these errors were encountered:
It looks like the
inline_no_clear
option was broken in v0.77.0, from a quick git bisect the culprit seems to be commit 8c01ef7.If you run the app below where
inline_no_clear=True
, the app output is cleared on exit:The text was updated successfully, but these errors were encountered: