From 152e22d5ff47b8bc4f55e6fae39b67431a988173 Mon Sep 17 00:00:00 2001 From: Max Kellermann Date: Thu, 12 Sep 2024 11:42:49 +0200 Subject: [PATCH] screen_utils: use Style::LIST, not Style::STATUS_ALERT --- src/screen_utils.cxx | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/screen_utils.cxx b/src/screen_utils.cxx index bde94584..88b0028f 100644 --- a/src/screen_utils.cxx +++ b/src/screen_utils.cxx @@ -41,7 +41,7 @@ screen_display_completion_list(ScreenManager &screen, offset = 0; } - SelectStyle(window, Style::STATUS_ALERT); + SelectStyle(window, Style::LIST); auto i = std::next(range.begin(), offset); for (unsigned y = 0; y < height; ++i) { @@ -75,5 +75,4 @@ screen_display_completion_list(ScreenManager &screen, window.ClearToBottom(); window.Refresh(); - SelectStyle(window, Style::LIST); }