From 9d7c5966d37a7e1611e9e4b77b75e02778a99087 Mon Sep 17 00:00:00 2001 From: Jake Funke Date: Fri, 16 Aug 2019 17:25:45 +0000 Subject: [PATCH] cleanup comments --- menu_screen.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/menu_screen.py b/menu_screen.py index 4b6b728..da64cb0 100644 --- a/menu_screen.py +++ b/menu_screen.py @@ -57,6 +57,7 @@ class CursedMenu(object): self.show(["water","look","garden","visit", "instructions"], title=' botany ', subtitle='options') def define_colors(self): + # TODO: implement colors # set curses color pairs manually curses.init_pair(1, curses.COLOR_BLACK, curses.COLOR_WHITE) curses.init_pair(2, curses.COLOR_WHITE, curses.COLOR_BLACK) @@ -355,7 +356,6 @@ class CursedMenu(object): self.infotoggle = 2 # print garden information OR clear it - # TODO: pagination control with hjkl/arrow keys/esc-or-x to close index = 0 sort_column, sort_ascending = 0, True sort_keys = ["n", "a", "s", "d"] # Name, Age, Score, Description