Skip to content

Commit

Permalink
screen_utils: use Style::LIST, not Style::STATUS_ALERT
Browse files Browse the repository at this point in the history
  • Loading branch information
MaxKellermann committed Sep 12, 2024
1 parent f3c7c5b commit 152e22d
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions src/screen_utils.cxx
Original file line number Diff line number Diff line change
Expand Up @@ -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) {
Expand Down Expand Up @@ -75,5 +75,4 @@ screen_display_completion_list(ScreenManager &screen,
window.ClearToBottom();

window.Refresh();
SelectStyle(window, Style::LIST);
}

0 comments on commit 152e22d

Please sign in to comment.