def user_input()

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


    def user_input(self):
        user_select = self.window.getch()
        while user_select != ord("q"):
            self.status_bar_render()
            if self.bottom > self.height:
                if user_select in UP_KEYS:
                    self.scroll_up(user_select)
                elif user_select in DOWN_KEYS:
                    self.scroll_down(user_select)
            if user_select in RIGHT_KEYS:
                self.scroll_right(user_select)
            elif user_select in LEFT_KEYS:
                self.scroll_left(user_select)

            self.display()
            user_select = self.window.getch()