about summary refs log tree commit diff stats
path: root/src/ui/inputwin.c
diff options
context:
space:
mode:
authorJames Booth <boothj5@gmail.com>2014-11-16 20:40:19 +0000
committerJames Booth <boothj5@gmail.com>2014-11-16 20:40:19 +0000
commited4391ec8a3190769917358e4fa68106c9e9891d (patch)
tree363a26afbfdac311dffaa5706900d5147a5dea5e /src/ui/inputwin.c
parent90dd1de91a6972bf82fb385dd277444ac5317484 (diff)
downloadprofani-tty-ed4391ec8a3190769917358e4fa68106c9e9891d.tar.gz
Replaced colours with theme_item_t
Diffstat (limited to 'src/ui/inputwin.c')
-rw-r--r--src/ui/inputwin.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/ui/inputwin.c b/src/ui/inputwin.c
index 3e587d3e..3fb89979 100644
--- a/src/ui/inputwin.c
+++ b/src/ui/inputwin.c
@@ -83,7 +83,7 @@ create_input_window(void)
 #endif
     getmaxyx(stdscr, rows, cols);
     inp_win = newpad(1, INP_WIN_MAX);
-    wbkgd(inp_win, COLOUR_INPUT_TEXT);
+    wbkgd(inp_win, theme_attrs(THEME_INPUT_TEXT));;
     keypad(inp_win, TRUE);
     wmove(inp_win, 0, 0);
     _inp_win_update_virtual();