def status_bar_render()

in memory_analyzer/frontend/memanz_curses.py [0:0]


    def status_bar_render(self):
        statusbarstr = (
            f"{self.cur_page.title} | Navigate with arrows or wasd | Press 'q' to exit"
        )
        self.window.attron(curses.color_pair(1))
        self.window.addstr(self.height, 0, statusbarstr)
        self.window.addstr(
            self.height, len(statusbarstr), " " * (self.width - len(statusbarstr))
        )
        self.window.attroff(curses.color_pair(1))