remove the footer

This commit is contained in:
Michael Hudson-Doyle 2019-09-25 13:25:43 +12:00
parent f78760101f
commit d8d5b2e265
2 changed files with 2 additions and 16 deletions

View File

@ -68,7 +68,6 @@ class Subiquity(Application):
self.controllers.remove("Zdev")
super().__init__(opts)
self.ui.progress_completion += 1
self.block_log_dir = block_log_dir
if opts.snaps_from_examples:
connection = FakeSnapdConnection(

View File

@ -20,7 +20,7 @@ import logging
from urwid import (
Text,
)
from subiquitycore.ui.anchors import Header, Footer
from subiquitycore.ui.anchors import Header
from subiquitycore.ui.container import (
ListBox,
Pile,
@ -38,16 +38,9 @@ class SubiquityCoreUI(WidgetWrap):
def __init__(self):
self.header = Header("")
self.footer = Footer("", self.right_icon, 0, 1)
self.progress_current = 0
self.progress_completion = 0
# After the install starts, we want to stop setting the footer
# from the body view.
self.auto_footer = True
self.pile = Pile([
('pack', self.header),
ListBox([Text("")]),
('pack', self.footer),
])
super().__init__(Color.body(self.pile))
@ -58,11 +51,7 @@ class SubiquityCoreUI(WidgetWrap):
self._assign_contents(0, Header(title))
def set_footer(self, message):
self._assign_contents(
2,
Footer(
message, self.right_icon,
self.progress_current, self.progress_completion))
pass
@property
def body(self):
@ -71,5 +60,3 @@ class SubiquityCoreUI(WidgetWrap):
def set_body(self, widget):
self.set_header(_(widget.title))
self._assign_contents(1, widget)
if self.auto_footer:
self.set_footer(_(widget.footer))