From b87b7a1470a84c83c9053a5716a1d08bbbbe3274 Mon Sep 17 00:00:00 2001 From: Nikos Skalkotos Date: Tue, 23 Oct 2012 17:06:56 +0300 Subject: [PATCH 1/1] Do not hide the cursor when showing a progress bar This is a workaround for a progress bar bug, where the system may stay with the cursor hidden if finish() is not called. --- image_creator/output/cli.py | 1 + 1 file changed, 1 insertion(+) diff --git a/image_creator/output/cli.py b/image_creator/output/cli.py index 211eb04..2859552 100644 --- a/image_creator/output/cli.py +++ b/image_creator/output/cli.py @@ -102,6 +102,7 @@ class OutputWthProgress(SimpleOutput): } def __init__(self, size, title, bar_type='default'): + self.hide_cursor = False super(OutputWthProgress._Progress, self).__init__() self.title = title self.fill = '#' -- 1.7.10.4