Treeview: Use text input colour style for search bar.

This commit is contained in:
Michael Drake 2020-05-23 21:33:08 +01:00
parent 994827ab82
commit 3e90cdf689
1 changed files with 3 additions and 3 deletions

View File

@ -2050,9 +2050,9 @@ treeview_create(treeview **tree,
if (flags & TREEVIEW_SEARCHABLE) {
(*tree)->search.textarea = treeview__create_textarea(
*tree, 600, tree_g.line_height,
plot_style_even.text.background,
plot_style_even.text.background,
plot_style_even.text.foreground,
nscolours[NSCOLOUR_TEXT_INPUT_BG],
nscolours[NSCOLOUR_TEXT_INPUT_BG],
nscolours[NSCOLOUR_TEXT_INPUT_FG],
plot_style_odd.text,
treeview_textarea_search_callback);
if ((*tree)->search.textarea == NULL) {