summaryrefslogtreecommitdiffstats
path: root/text.py
diff options
context:
space:
mode:
Diffstat (limited to 'text.py')
-rw-r--r--text.py6
1 files changed, 6 insertions, 0 deletions
diff --git a/text.py b/text.py
index a87ed5e29..ec00e0b00 100644
--- a/text.py
+++ b/text.py
@@ -535,6 +535,12 @@ class InstallInterface:
self.screen.finish()
self.screen = None
+ def suspend(self):
+ self.screen.suspend()
+
+ def resume(self):
+ self.screen.resume()
+
def __init__(self):
signal.signal(signal.SIGINT, signal.SIG_IGN)
signal.signal(signal.SIGTSTP, signal.SIG_IGN)