tools/kvm_stat: hide cursor
When running kvm_stat in interactive mode, the cursor appears at the lower left corner, which looks a bit distracting. This patch hides the cursor by turning it invisible. Signed-off-by: Stefan Raspl <raspl@linux.vnet.ibm.com> Reviewed-By: Sascha Silbe <silbe@linux.vnet.ibm.com> Reviewed-by: Marc Hartmayer <mhartmay@linux.vnet.ibm.com> Signed-off-by: Radim Krčmář <rkrcmar@redhat.com>
This commit is contained in:
parent
2beb6dad2e
commit
a0b4e6a032
|
@ -812,6 +812,13 @@ class Tui(object):
|
|||
except:
|
||||
pass
|
||||
|
||||
# Hide cursor in extra statement as some monochrome terminals
|
||||
# might support hiding but not colors.
|
||||
try:
|
||||
curses.curs_set(0)
|
||||
except curses.error:
|
||||
pass
|
||||
|
||||
curses.use_default_colors()
|
||||
return self
|
||||
|
||||
|
|
Loading…
Reference in New Issue