Skip to content

Commit

Permalink
fix: setting transient as default (#109)
Browse files Browse the repository at this point in the history
  • Loading branch information
petereon authored Aug 23, 2024
1 parent c5ef67e commit 95d8b92
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion beaupy/_beaupy.py
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ class Config:

raise_on_interrupt: bool = False
raise_on_escape: bool = False
transient: bool = False
transient: bool = True


_navigation_keys = [DefaultKeys.up, DefaultKeys.down, DefaultKeys.right, DefaultKeys.left, DefaultKeys.home, DefaultKeys.end]
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = 'beaupy'
version = '3.9.1'
version = '3.9.2'
description = 'A library of elements for interactive TUIs in Python'
authors = ['Peter Vyboch <[email protected]>']
license = 'MIT'
Expand Down

0 comments on commit 95d8b92

Please sign in to comment.