From 8147ecac32f8737c76c6d686d69936a9d914088b Mon Sep 17 00:00:00 2001 From: Albert Cervin Date: Thu, 19 Oct 2023 23:41:04 +0200 Subject: Fix search result score --- src/dged/window.c | 9 --------- 1 file changed, 9 deletions(-) (limited to 'src/dged/window.c') diff --git a/src/dged/window.c b/src/dged/window.c index 91b1735..a25154a 100644 --- a/src/dged/window.c +++ b/src/dged/window.c @@ -186,7 +186,6 @@ void windows_update(void *(*frame_alloc)(size_t), uint64_t frame_time) { const uint32_t hpadding = 1; const uint32_t border_width = 1; - const uint32_t shadow_width = 1; bool draw_padding = false, draw_borders = false; @@ -257,14 +256,6 @@ void windows_update(void *(*frame_alloc)(size_t), uint64_t frame_time) { x += border_width; } - // shadow - /*command_list_set_index_color_bg(w->commands, 236); - command_list_draw_repeated(w->commands, 1, w->height + vmargins, ' ', - w->width + margins * 2); for (uint32_t line = 1; line < w->height; ++line) { - command_list_draw_repeated(w->commands, w->width + margins * 2, line, ' ', - shadow_width); - }*/ - struct command_list *inner = command_list_create( w->height * w->width, frame_alloc, w_x + x, w_y + y, "bufview-popup"); -- cgit v1.2.3