D6131: crecord: redraw the screen when starting up chunkselector

spectral (Kyle Lippincott) phabricator at mercurial-scm.org
Wed Mar 20 14:08:11 EDT 2019


This revision was automatically updated to reflect the committed changes.
Closed by commit rHGcde5827d09a7: crecord: redraw the screen when starting up chunkselector (authored by spectral, committed by ).

REPOSITORY
  rHG Mercurial

CHANGES SINCE LAST UPDATE
  https://phab.mercurial-scm.org/D6131?vs=14491&id=14573

REVISION DETAIL
  https://phab.mercurial-scm.org/D6131

AFFECTED FILES
  mercurial/crecord.py

CHANGE DETAILS

diff --git a/mercurial/crecord.py b/mercurial/crecord.py
--- a/mercurial/crecord.py
+++ b/mercurial/crecord.py
@@ -1764,6 +1764,12 @@
         except curses.error:
             self.usecolor = False
 
+        # In some situations we may have some cruft left on the "alternate
+        # screen" from another program (or previous iterations of ourself), and
+        # we won't clear it if the scroll region is small enough to comfortably
+        # fit on the terminal.
+        self.stdscr.clear()
+
         # available colors: black, blue, cyan, green, magenta, white, yellow
         # init_pair(color_id, foreground_color, background_color)
         self.initcolorpair(None, None, name="normal")



To: spectral, #hg-reviewers
Cc: martinvonz, mercurial-devel


More information about the Mercurial-devel mailing list