Merge carousel.love

This commit is contained in:
Kartik K. Agaram 2024-03-14 10:27:27 -07:00
commit fe06035b9d
1 changed files with 1 additions and 1 deletions

View File

@ -15,7 +15,6 @@ on.draw = function()
love.graphics.setFont(Font)
App.color(Normal_color)
love.graphics.setLineWidth(1)
draw_menu()
-- output
draw_output_border()
edit.draw(Output_editor_state, Foreground_color, --[[hide cursor]] true)
@ -25,6 +24,7 @@ on.draw = function()
edit.draw(Current_pane.editor_state, --[[implicitly use Foreground_color]] nil, --[[hide_cursor]] nil, --[[show_line_numbers]] true)
draw_scrollbar(Current_pane.editor_state)
--
draw_menu()
draw_next_frames_of_animations()
draw_button_tooltips(Global_state)
end