in src/pathpicker/screen_control.py [0:0]
def clear_description_pane(self) -> None:
if self.description_clear:
return
max_y, max_x = self.screen_control.get_screen_dimensions()
border_x = max_x - self.width
start_y = self.sidebar_y + 1
self.printer.clear_square(start_y, max_y - 1, border_x + 2, max_x)
self.description_clear = True