示例#1
0
 def _goto_top(self):
     ansi.restore_position()
     ansi.up(self.height)
示例#2
0
 def _goto_top(self):
     self.parent._goto_top()
     ansi.up(1)
示例#3
0
 def _clear_menu(self):
     self.parent._clear_menu()
     ansi.up()
     ansi.clear_eol()
示例#4
0
 def _clear_menu(self):
     ansi.restore_position()
     for i in xrange(self.height):
         ansi.clear_eol()
         ansi.up()
     ansi.clear_eol()