This commit is contained in:
Kartik K. Agaram 2022-10-31 09:21:33 -07:00
parent 139918f50f
commit ae5e36c44f

View File

@ -290,11 +290,11 @@ function draw_command_palette_for_search_all()
local y = 5
love.graphics.draw(Display_settings.search_all_query_text, x,y)
if Display_settings.mode == 'search_all' then
-- draw cursor
x = x+App.width(Display_settings.search_all_query_text)
draw_cursor(x, y)
end
-- show progress
if Display_settings.mode == 'searching_all' then
elseif Display_settings.mode == 'searching_all' then
-- show progress
App.color(Command_palette_alternatives_background_color)
love.graphics.rectangle('fill', 0, Menu_status_bar_height, App.screen.width, 5+Line_height+5)
App.color(Command_palette_border_color)