bugfix: draw menu after everything else

This is stupid; I did it right in pensieve.love to begin with.
This commit is contained in:
Kartik K. Agaram 2022-09-17 23:53:05 -07:00
parent 36bde53d41
commit d1db41b7b8
1 changed files with 1 additions and 1 deletions

View File

@ -221,7 +221,6 @@ function source.switch_to_file(filename)
end
function source.draw()
source.draw_menu_bar()
edit.draw(Editor_state)
if Show_log_browser_side then
-- divider
@ -230,6 +229,7 @@ function source.draw()
--
log_browser.draw(Log_browser_state)
end
source.draw_menu_bar()
end
function source.update(dt)