summaryrefslogtreecommitdiffstats
path: root/text.py
diff options
context:
space:
mode:
Diffstat (limited to 'text.py')
-rw-r--r--text.py4
1 files changed, 4 insertions, 0 deletions
diff --git a/text.py b/text.py
index 909ae0997..503962522 100644
--- a/text.py
+++ b/text.py
@@ -261,6 +261,9 @@ class InstallInterface:
def progressWindow(self, title, text, total, updpct = 0.05, pulse = False):
return ProgressWindow(self.screen, title, text, total, updpct, pulse)
+ def setInstallProgressClass(self, c):
+ self.instProgress = c
+
def exitWindow(self, title, text):
return self.messageWindow(title, text, type="custom",
custom_buttons=[_("Exit installer")])
@@ -437,6 +440,7 @@ class InstallInterface:
signal.signal(signal.SIGINT, signal.SIG_IGN)
signal.signal(signal.SIGTSTP, signal.SIG_IGN)
self.screen = SnackScreen()
+ self.instProgress = None
self._initLabelAnswers = {}
self._inconsistentLVMAnswers = {}