As we will change the status during the operation and we don't set a
text at the beginning, the textbox is sized as zero length and therefore
the status was never seen.
This patch always makes the text box one line high.
Signed-off-by: Michael Tremer <michael.tremer@ipfire.org>
self.max_value = max_value
# Make textbox
- self.textbox = snack.TextboxReflowed(self.width, self.text)
+ self.textbox = snack.Textbox(self.width, height=1,
+ text=self.text, scroll=False, wrap=True)
def _make_window(self):
# Create the grid